角色管理新增分配用户功能

This commit is contained in:
RuoYi
2021-07-06 14:02:37 +08:00
parent 3d47ec2e73
commit 0b0da91139
14 changed files with 693 additions and 20 deletions

View File

@@ -93,6 +93,19 @@ export const constantRoutes = [
}
]
},
{
path: '/auth',
component: Layout,
hidden: true,
children: [
{
path: 'user/:roleId(\\d+)',
component: (resolve) => require(['@/views/system/role/authUser'], resolve),
name: 'AuthUser',
meta: { title: '分配用户'}
}
]
},
{
path: '/dict',
component: Layout,