新增:新增系统管理/用户管理(列表、查看详情、新增、修改、删除、导出)

This commit is contained in:
2023-02-22 23:58:28 +08:00
parent 297fbd3675
commit efa8f4fcf5
48 changed files with 1805 additions and 154 deletions

View File

@@ -12,6 +12,16 @@ const System: AppRouteRecordRaw = {
order: 1,
},
children: [
{
path: '/system/user',
name: 'User',
component: () => import('@/views/system/user/index.vue'),
meta: {
locale: 'menu.system.user.list',
requiresAuth: true,
roles: ['*'],
},
},
{
path: '/system/role',
name: 'Role',