feat:增加奖状证书模块

This commit is contained in:
2026-04-01 23:24:06 +08:00
parent 11887bf3d5
commit ac914f6c05
60 changed files with 601 additions and 1095 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="mobile-bill-view common-mobile-view">
<div class="common-mobile-view">
<bill-query/>
<bill-daily-list v-if="billStore.billDateType === 'year'"/>
<bill-calendar v-if="billStore.billDateType === 'month'" />
@@ -21,6 +21,8 @@ const billStore = useBillStore()
const router = useRouter()
onMounted(async () => {
await billStore.initBillInfo()
billStore.billQueryForm = {
billBook: 'all',
billYear: getCurrentYear(),
@@ -45,7 +47,3 @@ const addClick = () => {
router.push({ name: 'BillDetailId', params: { id: 0 } })
}
</script>
<style lang="scss">
@use "@/styles/home/bill.mobile.module";
</style>