This commit is contained in:
ky_sunl
2021-04-15 07:04:51 +00:00
parent 51e313243c
commit b2cb053491
3 changed files with 10 additions and 2 deletions

View File

@@ -16,11 +16,13 @@ import dictManage from './dictManage'
import appManage from './appManage'
import orgManage from './orgManage'
import roleMange from './roleMange'
import userManage from './userManage'
export default {
...loginManage,
...dictManage,
...appManage,
...orgManage,
...roleMange
...roleMange,
...userManage
}

View File

@@ -1,3 +1,3 @@
export default {
getOrgTree: ['/sysOrg/tree', 'get']
}

View File

@@ -0,0 +1,6 @@
export default {
getUserPage: ['/sysUser/page', 'get'],
sysUserAdd: '/sysUser/add',
sysUserEdit: '/sysUser/edit',
sysUserDetail: '/sysUser/detail',
}