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

Added GroupManagement. Fixed some errors in RoleManagement.

This commit is contained in:
2023-05-16 00:19:14 +08:00
parent a385938cd7
commit b6649df71f
13 changed files with 552 additions and 55 deletions

View File

@@ -186,13 +186,24 @@ const router = createRouter({
children: [
{
path: 'role',
name: 'systemRole',
name: 'roleManagement',
component: async () => await import('@/pages/power/RoleManagement.vue'),
meta: {
title: '角色管理',
requiresScrollbar: false,
requiresPadding: true
}
},
{
path: 'group',
name: 'groupManagement',
component: async () =>
await import('@/pages/power/GroupManagement.vue'),
meta: {
title: '用户组管理',
requiresScrollbar: false,
requiresPadding: true
}
}
],
meta: {