Files
dvcp_v2_wxcp_app/src/project/saas/AppDataStatistics/components/update.vue

56 lines
838 B
Vue
Raw Normal View History

2022-12-11 16:21:17 +08:00
<template>
2022-12-11 17:46:29 +08:00
<div class="update">
2022-12-12 15:55:27 +08:00
<h3>更新统计</h3>
<div class="information">
<u-subsection :list="list" :current="1"></u-subsection>
</div>
2022-12-11 17:46:29 +08:00
</div>
2022-12-11 16:21:17 +08:00
</template>
<script>
export default {
2022-12-12 15:55:27 +08:00
name: "update",
data() {
return {
list: [
{
name: '本日'
},
{
name: '本周'
},
{
name: '本月'
},
{
name: '本年'
}
],
current: 1,
}
},
created() {
2022-12-11 16:21:17 +08:00
2022-12-12 15:55:27 +08:00
},
mounted() {},
methods: {},
2022-12-11 16:21:17 +08:00
}
</script>
<style lang="scss" scoped>
.update {
2022-12-12 15:55:27 +08:00
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;
}
2022-12-11 16:21:17 +08:00
}
</style>