fix:接口修复
This commit is contained in:
@@ -12,7 +12,15 @@ export function doPostUser(user: Api.Auth.User) {
|
||||
export function doDeleteUser(userId: number | string) {
|
||||
return request({ url: `/system/user/${userId}`, method: 'delete' });
|
||||
}
|
||||
|
||||
//系统管理查看客户
|
||||
export function doGetsysUserList(params?: { userName?: string; email?: string }) {
|
||||
return request<Api.Common.PaginatingQueryRecord<Api.Auth.User>>({
|
||||
url: '/system/user/list',
|
||||
method: 'get',
|
||||
params
|
||||
});
|
||||
}
|
||||
//系统管理查看用户
|
||||
export function doGetUserList(params?: { userName?: string; email?: string }) {
|
||||
return request<Api.Common.PaginatingQueryRecord<Api.Auth.User>>({
|
||||
url: '/system/user/listUser',
|
||||
|
||||
Reference in New Issue
Block a user