feat(web): 更新路由配置和图标数据定义,优化前端路由导航和UI图标管理

This commit is contained in:
caoxiaozhu
2026-05-15 09:36:33 +00:00
parent 1bab7c22d7
commit 94adb82acc
2 changed files with 10 additions and 0 deletions

View File

@@ -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}`