From 94adb82acc6fe9df1703b09369bddc76ecd2ed7b Mon Sep 17 00:00:00 2001 From: caoxiaozhu Date: Fri, 15 May 2026 09:36:33 +0000 Subject: [PATCH] =?UTF-8?q?feat(web):=20=E6=9B=B4=E6=96=B0=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E9=85=8D=E7=BD=AE=E5=92=8C=E5=9B=BE=E6=A0=87=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=AE=9A=E4=B9=89=EF=BC=8C=E4=BC=98=E5=8C=96=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E8=B7=AF=E7=94=B1=E5=AF=BC=E8=88=AA=E5=92=8CUI?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/data/icons.js | 1 + web/src/router/index.js | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/web/src/data/icons.js b/web/src/data/icons.js index bb698bb..4b2f46a 100644 --- a/web/src/data/icons.js +++ b/web/src/data/icons.js @@ -9,6 +9,7 @@ export const icons = { skill: iconPath(''), users: iconPath(''), audit: iconPath(''), + logs: iconPath(''), settings: iconPath(''), search: iconPath(''), check: iconPath(''), diff --git a/web/src/router/index.js b/web/src/router/index.js index 5474fdf..922c1b9 100644 --- a/web/src/router/index.js +++ b/web/src/router/index.js @@ -69,6 +69,15 @@ const router = createRouter({ appView: 'requests' } }, + { + path: '/app/logs/:logKind/:logId', + name: 'app-log-detail', + component: AppShellRouteView, + meta: { + requiresAuth: true, + appView: 'logs' + } + }, ...appChildRoutes.map((route) => ({ ...route, path: `/app/${route.path}`