feat(系统管理-用户管理): 增加辅助信息包含第三方平台账号

This commit is contained in:
fit2cloud-chenyw
2022-09-21 14:01:02 +08:00
parent 4d7578bfc2
commit bf5bf82a30
13 changed files with 419 additions and 253 deletions

View File

@@ -10,7 +10,8 @@ const pathMap = {
updatePath: '/api/user/update',
editPasswordPath: '/api/user/adminUpdatePwd',
editStatusPath: '/api/user/updateStatus',
unlockPath: '/api/user/unlock/'
unlockPath: '/api/user/unlock/',
queryAssistPath: '/api/user/assistInfo/'
}
export function userLists(page, size, data) {
return request({
@@ -142,4 +143,12 @@ export function unLock(username) {
})
}
export default { editPassword, delUser, editUser, addUser, userLists, editStatus, personInfo, updatePerson, updatePersonPwd, allRoles, roleGrid, ldapUsers, saveLdapUser, existLdapUsers, unLock }
export function queryAssist(userId) {
return request({
url: pathMap.queryAssistPath + userId,
method: 'post',
loading: false
})
}
export default { editPassword, delUser, editUser, addUser, userLists, editStatus, personInfo, updatePerson, updatePersonPwd, allRoles, roleGrid, ldapUsers, saveLdapUser, existLdapUsers, unLock, queryAssist }