From 4a9468fcdda124f3cca30def9aac8a83d4058171 Mon Sep 17 00:00:00 2001 From: huangping Date: Mon, 25 May 2026 01:14:35 +0800 Subject: [PATCH] fix(home): add M7/M8/M9 quick links to home page --- web/delivery-platform-ui/src/views/HomeView.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/delivery-platform-ui/src/views/HomeView.vue b/web/delivery-platform-ui/src/views/HomeView.vue index cad1ac3..65c20da 100644 --- a/web/delivery-platform-ui/src/views/HomeView.vue +++ b/web/delivery-platform-ui/src/views/HomeView.vue @@ -41,6 +41,9 @@ const allModuleLinks = [ { to: "/callbacks", label: "Callback 收件箱", roles: ["SYS_ADMIN", "OPS"] }, { to: "/integration/environments", label: "集成环境", roles: ["SYS_ADMIN", "DEVELOPER", "OPS"] }, { to: "/integration/product-lines", label: "产品线", roles: ["SYS_ADMIN", "DEVELOPER", "OPS"] }, + { to: "/devices", label: "设备管理", roles: ["SYS_ADMIN", "DEVELOPER"] }, + { to: "/todos", label: "待办中心", roles: ["SYS_ADMIN", "DEVELOPER", "OPS"] }, + { to: "/reports/contract-sn", label: "报表中心", roles: ["SYS_ADMIN"] }, ]; const visibleModuleLinks = computed(() => allModuleLinks.filter((l) => auth.hasAnyRole(l.roles)));