feat(router): 添加个人中心路由配置

- 在静态路由中添加个人中心页面路由
- 配置路由权限要求和图标显示
- 确保个人中心页面可以正常访问
This commit is contained in:
Leo 2025-07-06 22:09:33 +08:00
parent 8166c04919
commit dc49a25a88

View File

@ -10,4 +10,15 @@ export const staticRoutes: AppRoute.RowRoute[] = [
id: 3, id: 3,
pid: null, 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,
},
] ]