This commit is contained in:
qsh
2024-08-03 18:15:14 +08:00
parent 925887f4c9
commit 22bc22c00a
4 changed files with 19 additions and 4 deletions

View File

@@ -79,3 +79,8 @@ export const getSimpleUserList = (): Promise<UserVO[]> => {
export const getAllUserList = (): Promise<UserVO[]> => {
return request.get({ url: '/admin-api/system/user/no/permission/list-all-simple' })
}
// 获取所有包括离职的用户
export const getAllUserListWithHire = (): Promise<UserVO[]> => {
return request.get({ url: '/admin-api/system/user/no/permission/list-all' })
}