update(router): 优化静态路由配置

- 更新仪表盘图标为更合适的dashboard-one
- 临时注释个人中心路由配置
- 规范路由图标使用
This commit is contained in:
Leo 2025-07-07 22:35:50 +08:00
parent da0a69c3b6
commit acf4fda7ac

View File

@ -4,21 +4,21 @@ export const staticRoutes: AppRoute.RowRoute[] = [
path: '/dashboard/monitor', path: '/dashboard/monitor',
title: '仪表盘', title: '仪表盘',
requiresAuth: true, requiresAuth: true,
icon: 'icon-park-outline:anchor', icon: 'icon-park-outline:dashboard-one',
menuType: '2', menuType: '2',
componentPath: '/dashboard/monitor/index', componentPath: '/dashboard/monitor/index',
id: 3, id: 3,
pid: null, pid: null,
}, },
{ // {
name: 'personal-center', // name: 'personal-center',
path: '/personal-center', // path: '/personal-center',
title: '个人中心', // title: '个人中心',
requiresAuth: true, // requiresAuth: true,
icon: 'icon-park-outline:user', // icon: 'icon-park-outline:id-card-h',
menuType: '2', // menuType: '2',
componentPath: '/personal-center/index', // componentPath: '/personal-center/index',
id: 4, // id: 4,
pid: null, // pid: null,
}, // },
] ]