45 lines
814 B
Vue
45 lines
814 B
Vue
<template>
|
|
<div class="AppPropagandaStatistics">
|
|
<uni-calendar :insert="true" :selected="selected" :lunar="false" @change="change"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppPropagandaStatistics',
|
|
appName: '宣发统计',
|
|
data() {
|
|
return {
|
|
date: '',
|
|
selected: [{date: '2022-07-08',}],
|
|
}
|
|
},
|
|
onShow() {
|
|
document.title = '宣发统计'
|
|
},
|
|
methods: {
|
|
change(val) {
|
|
this.date = `${val.year} + '-' + ${val.month} + '-' + ${val.day}`
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
</script>
|
|
|
|
<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
|
|
}
|
|
}
|
|
|
|
</style> |