56 lines
838 B
Vue
56 lines
838 B
Vue
<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> |