Files
dvcp_v2_wxcp_app/src/project/saas/AppPropagandaStatistics/AppPropagandaStatistics.vue

45 lines
814 B
Vue
Raw Normal View History

2022-07-08 11:22:57 +08:00
<template>
<div class="AppPropagandaStatistics">
2022-07-08 17:33:14 +08:00
<uni-calendar :insert="true" :selected="selected" :lunar="false" @change="change"/>
2022-07-08 11:22:57 +08:00
</div>
</template>
<script>
export default {
name: 'AppPropagandaStatistics',
appName: '宣发统计',
data() {
return {
2022-07-08 17:33:14 +08:00
date: '',
selected: [{date: '2022-07-08',}],
2022-07-08 11:22:57 +08:00
}
},
onShow() {
document.title = '宣发统计'
},
methods: {
2022-07-08 17:33:14 +08:00
change(val) {
this.date = `${val.year} + '-' + ${val.month} + '-' + ${val.day}`
}
}
2022-07-08 11:22:57 +08:00
}
</script>
2022-07-08 17:33:14 +08:00
<style lang="scss" scoped>
.AppPropagandaStatistics {
::v-deep .uni-calendar-item__weeks-box-circle {
top: 77%;
right: 45%;
border-radius: 12px;
}
::v-deep .uni-calendar__header {
height: 76px;
}
::v-deep .uni-calendar__backtoday {
display: none
}
}
2022-07-08 11:22:57 +08:00
</style>