用户编辑界面

This commit is contained in:
chenchun
2022-09-11 02:39:33 +08:00
parent 0dca7acee6
commit d001a0de15
12 changed files with 445 additions and 607 deletions

View File

@@ -117,3 +117,10 @@ export function deptTreeSelect(roleId) {
method: 'get'
})
}
// 获取角色选择框列表
export function roleOptionselect() {
return request({
url: '/role/getList',
method: 'get'
})
}

View File

@@ -13,7 +13,7 @@ export function listUser(query) {
// 查询用户详细
export function getUser(userId) {
return request({
url: '/system/user/' + parseStrEmpty(userId),
url: '/user/getById/' + parseStrEmpty(userId),
method: 'get'
})
}