From aeea3fc25cb16529485036d1f127d331788c3b2b Mon Sep 17 00:00:00 2001 From: DXC Date: Tue, 10 Mar 2026 12:25:32 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=B0=86=E5=AE=A1=E8=AE=A1=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E9=A1=B5=E9=9D=A2=E6=B3=A8=E5=86=8C=E8=87=B3=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E8=B7=AF=E7=94=B1=E4=BD=93=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventory-web/src/router/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/inventory-web/src/router/index.ts b/inventory-web/src/router/index.ts index 3808be9..0205e24 100644 --- a/inventory-web/src/router/index.ts +++ b/inventory-web/src/router/index.ts @@ -209,6 +209,17 @@ const routes: Array = [ icon: 'Lock', roles: ['SUPER_ADMIN'] } + }, + // [新增] 审计日志页面,只有超级管理员可进 + { + path: 'audit', + name: 'AuditLog', + component: () => import('@/views/system/AuditLog.vue'), + meta: { + title: '审计日志', + icon: 'Document', + roles: ['SUPER_ADMIN'] + } } ] },