From acf4fda7ac6ba2cfa1c20d61c1c9f4b873b9def0 Mon Sep 17 00:00:00 2001 From: Leo <98382335+gaoziman@users.noreply.github.com> Date: Mon, 7 Jul 2025 22:35:50 +0800 Subject: [PATCH] =?UTF-8?q?update(router):=20=E4=BC=98=E5=8C=96=E9=9D=99?= =?UTF-8?q?=E6=80=81=E8=B7=AF=E7=94=B1=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新仪表盘图标为更合适的dashboard-one - 临时注释个人中心路由配置 - 规范路由图标使用 --- src/router/routes.static.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/router/routes.static.ts b/src/router/routes.static.ts index 61b3746..b24e076 100644 --- a/src/router/routes.static.ts +++ b/src/router/routes.static.ts @@ -4,21 +4,21 @@ export const staticRoutes: AppRoute.RowRoute[] = [ path: '/dashboard/monitor', title: '仪表盘', requiresAuth: true, - icon: 'icon-park-outline:anchor', + icon: 'icon-park-outline:dashboard-one', menuType: '2', componentPath: '/dashboard/monitor/index', id: 3, pid: null, }, - { - name: 'personal-center', - path: '/personal-center', - title: '个人中心', - requiresAuth: true, - icon: 'icon-park-outline:user', - menuType: '2', - componentPath: '/personal-center/index', - id: 4, - pid: null, - }, + // { + // name: 'personal-center', + // path: '/personal-center', + // title: '个人中心', + // requiresAuth: true, + // icon: 'icon-park-outline:id-card-h', + // menuType: '2', + // componentPath: '/personal-center/index', + // id: 4, + // pid: null, + // }, ]