electricControl/pages/main/history.stml

45 lines
647 B
Plaintext

<template>
<view class="history_wrap">
<text class="history_title">历史操作记录</text>
<scroll-view class="history_list" scroll-x ="false" scroll-y>
<view class=""></view>
</scroll-view>
</view>
</template>
<script>
export default {
name: 'history',
data() {
return{
}
},
apiready(){
},
methods: {
}
}
</script>
<style>
.history_wrap{
width: 100%;
height: 100vh;
box-sizing: border-box;
padding: 20px;
}
.history_title{
width: 100%;
text-align: center;
font-size: 40px;
font-weight: bold;
color: #000000;
}
.history_list{
margin-top: 30px;
border: 1px solid silver;
width: 100%;
height: 80vh;
}
</style>