1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

Modified the path and icon of role management

This commit is contained in:
2023-05-15 10:42:18 +08:00
parent 9a13c3cdc3
commit db6d0edceb
3 changed files with 7 additions and 5 deletions

View File

@@ -181,14 +181,13 @@ const router = createRouter({
]
},
{
path: '/system',
path: '/power',
name: 'systemManagement',
children: [
{
path: 'role',
name: 'systemRole',
component: async () =>
await import('@/pages/system/RoleManagement.vue'),
component: async () => await import('@/pages/power/RoleManagement.vue'),
meta: {
title: '角色管理',
requiresScrollbar: false,
@@ -197,8 +196,8 @@ const router = createRouter({
}
],
meta: {
title: '系统管理',
icon: shallowRef(IconPinnacleSetting),
title: '权限管理',
icon: shallowRef(IconPinnaclePower),
requiresScrollbar: false,
requiresPadding: true
}