feat(statistics): 添加统计分析模块:天医币、实物、培训班。

- 新增天医币、实物和培训班报表页面
- 添加统计相关API接口
- 配置统计分析路由
- 优化SheetFooter和DialogFooter组件样式
This commit is contained in:
2026-01-14 09:24:24 +08:00
parent 77c1b37f2e
commit dff302aae8
11 changed files with 511 additions and 60 deletions

View File

@@ -0,0 +1,45 @@
import type { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] = [
{
meta: {
icon: 'mdi:chart-areaspline',
keepAlive: true,
order: 1000,
title: '统计分析',
},
name: 'Statistics',
path: '/statistics',
children: [
{
meta: {
title: '天医币报表',
keepAlive: true,
},
name: 'TianyibiReport',
path: '/statistics/tianyibi-report',
component: () => import('#/views/statistics/tianyibi/report.vue'),
},
{
meta: {
title: '实物报表',
keepAlive: true,
},
name: 'PhysicalReport',
path: '/statistics/physical-report',
component: () => import('#/views/statistics/physical/report.vue'),
},
{
meta: {
title: '培训班报表',
keepAlive: true,
},
name: 'TrainingClassReport',
path: '/statistics/training-class-report',
component: () => import('#/views/statistics/trainingClass/report.vue'),
},
],
},
];
export default routes;