refactor: 优化账号管理

This commit is contained in:
2024-04-26 22:44:52 +08:00
parent bdafe43179
commit 25aa7cc17e
23 changed files with 234 additions and 310 deletions

View File

@@ -70,19 +70,13 @@ export const constantRoutes: RouteRecordRaw[] = [
path: '/setting/profile',
component: () => import('@/views/setting/profile/index.vue'),
name: 'Profile',
meta: { title: '基本信息', hidden: false }
meta: { title: '账号管理', hidden: false, showInTabs: false }
},
{
path: '/setting/security',
component: () => import('@/views/setting/security/index.vue'),
name: 'Security',
meta: { title: '安全设置', hidden: false }
},
{
path: '/setting/notice',
component: () => import('@/views/setting/notice/index.vue'),
name: 'Notification',
meta: { title: '消息中心', hidden: false }
meta: { title: '安全设置', hidden: false, showInTabs: false }
}
]
}