统计报表

This commit is contained in:
2026-07-25 17:48:53 +08:00 Unverified
parent 3d4d9953e8
commit 97691cb203
7 changed files with 1493 additions and 0 deletions
+8
View File
@@ -260,6 +260,14 @@ const router = createRouter({
component: () => import('../views/UsersView.vue'),
meta: { roles: ['SuperAdmin'] },
},
{
path: 'statistics',
name: 'statistics',
component: () => import('../views/StatisticsView.vue'),
meta: {
roles: ['SuperAdmin', 'AcademicAdmin', 'CollegeAdmin', 'Leader'],
},
},
],
},
{ path: '/:pathMatch(.*)*', redirect: '/dashboard' },