This commit is contained in:
2024-06-20 15:30:04 +08:00
parent 8a18771d78
commit ac1335985f
2 changed files with 15 additions and 4 deletions

View File

@@ -172,7 +172,7 @@ export function getUserListByIds(data:any) {
}
/**
* 查询所有用户
* 查询所有用户不包括管理员
*/
export const getUserSimpleList = () => {
return request({
@@ -181,6 +181,18 @@ export const getUserSimpleList = () => {
})
}
/**
* 查询所有用户包括管理员
*/
export const getAllUserSimpleList = () => {
return request({
url: '/user-boot/user/getAllUserSimpleList',
method: 'GET'
})
}