feat(web): add M8 todo center and notification settings pages

This commit is contained in:
2026-05-25 01:06:28 +08:00
parent 54e0f8a054
commit 830ea626c9
3 changed files with 343 additions and 0 deletions
@@ -128,6 +128,18 @@ const routes = [
component: () => import("../views/DeviceListView.vue"),
meta: { roles: ["SYS_ADMIN", "DEVELOPER", "OPS"], title: "设备管理" },
},
{
path: "todos",
name: "todos",
component: () => import("../views/TodoCenterView.vue"),
meta: { roles: ["SYS_ADMIN", "DEVELOPER", "OPS"], title: "待办中心" },
},
{
path: "notifications/settings",
name: "notification-settings",
component: () => import("../views/NotificationSettingsView.vue"),
meta: { roles: ["SYS_ADMIN"], title: "通知设置" },
},
],
},
{ path: "/403", name: "forbidden", component: () => import("../views/ForbiddenView.vue") },