This commit is contained in:
Baobhan Sith
2025-04-15 18:59:56 +08:00
parent 7649a7b69d
commit c026a42d06
43 changed files with 3479 additions and 169 deletions
+12
View File
@@ -47,6 +47,18 @@ const routes: Array<RouteRecordRaw> = [
name: 'Settings',
component: () => import('../views/SettingsView.vue')
},
// 新增:通知管理页面
{
path: '/notifications',
name: 'Notifications',
component: () => import('../views/NotificationsView.vue')
},
// 新增:审计日志页面
{
path: '/audit-logs',
name: 'AuditLogs',
component: () => import('../views/AuditLogView.vue')
},
// 其他路由...
];