From c1e14a5b3e91f92c2ee40bcf0c880fa5dfd09e4d Mon Sep 17 00:00:00 2001 From: ColorWhiteDeveloper <2632970487@qq.com> Date: 星期一, 19 九月 2022 16:34:36 +0800 Subject: [PATCH] 新增新建用户,修改用户状态 --- src/router/index.js | 32 ++++++++++++++++++++++++++------ 1 files changed, 26 insertions(+), 6 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index bd70fcf..06199da 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -18,14 +18,34 @@ component: () => import('@/views/systemSetting'), children: [ { - path: "createUser", - name: "createUser", - component: () => import('@/views/systemSetting/baseSetting/user/createUser') + path: "user", + name: "user", + component: () => import('@/views/systemSetting/baseSetting/user') }, { - path: 'userList', - name: 'userList', - component: () => import('@/views/systemSetting/baseSetting/user/userList') + path:'role', + name:'role', + component: () => import('@/views/systemSetting/baseSetting/role') + }, + { + path:'authority', + name:'authority', + component: () => import('@/views/systemSetting/baseSetting/authority') + }, + { + path:'department', + name:'department', + component: () => import('@/views/systemSetting/baseSetting/department') + }, + { + path:'portalSetting', + name:'portalSetting', + component: () => import('@/views/systemSetting/platform/portalSetting') + }, + { + path:'otherInterface', + name:'otherInterface', + component: () => import('@/views/systemSetting/platform/otherInterface') } ] }, -- Gitblit v1.8.0