feat(statistics): 添加统计分析模块:天医币、实物、培训班。
- 新增天医币、实物和培训班报表页面 - 添加统计相关API接口 - 配置统计分析路由 - 优化SheetFooter和DialogFooter组件样式
This commit is contained in:
45
apps/finance/src/router/routes/modules/statistics.ts
Normal file
45
apps/finance/src/router/routes/modules/statistics.ts
Normal 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;
|
||||
Reference in New Issue
Block a user