更新统计
This commit is contained in:
@@ -46,7 +46,7 @@ export default {
|
||||
component: message
|
||||
},
|
||||
],
|
||||
tabIndex: 0,
|
||||
tabIndex: 1,
|
||||
areaId: '',
|
||||
areaName: '',
|
||||
}
|
||||
|
||||
@@ -1,17 +1,56 @@
|
||||
<template>
|
||||
<div class="update">
|
||||
更新统计
|
||||
<h3>更新统计</h3>
|
||||
<div class="information">
|
||||
<u-subsection :list="list" :current="1"></u-subsection>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "update",
|
||||
data() {
|
||||
return {
|
||||
list: [
|
||||
{
|
||||
name: '本日'
|
||||
},
|
||||
{
|
||||
name: '本周'
|
||||
},
|
||||
{
|
||||
name: '本月'
|
||||
},
|
||||
{
|
||||
name: '本年'
|
||||
}
|
||||
],
|
||||
current: 1,
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
},
|
||||
mounted() {},
|
||||
methods: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.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>
|
||||
Reference in New Issue
Block a user