更新统计

This commit is contained in:
shijingjing
2022-12-12 15:55:27 +08:00
parent fdbd802665
commit dedda88acb
2 changed files with 42 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ export default {
component: message component: message
}, },
], ],
tabIndex: 0, tabIndex: 1,
areaId: '', areaId: '',
areaName: '', areaName: '',
} }

View File

@@ -1,17 +1,56 @@
<template> <template>
<div class="update"> <div class="update">
更新统计 <h3>更新统计</h3>
<div class="information">
<u-subsection :list="list" :current="1"></u-subsection>
</div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: "update",
data() {
return {
list: [
{
name: '本日'
},
{
name: '本周'
},
{
name: '本月'
},
{
name: '本年'
}
],
current: 1,
}
},
created() {
},
mounted() {},
methods: {},
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.update { .update {
padding: 0 30px;
box-sizing: border-box;
h3 {
margin: 32px 0 24px 0;
}
.information {
width: 100%;
height: 200px;
background: #FFFFFF;
border-radius: 16px;
padding: 32px;
box-sizing: border-box;
}
} }
</style> </style>