mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-25 12:56:36 +08:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import { alova } from '../request';
|
|
|
|
/** get role list */
|
|
export function fetchGetRoleList(params?: Api.SystemManage.RoleSearchParams) {
|
|
return alova.Get<Api.SystemManage.RoleList>('/systemManage/getRoleList', { params });
|
|
}
|
|
|
|
/**
|
|
* get all roles
|
|
*
|
|
* these roles are all enabled
|
|
*/
|
|
export function fetchGetAllRoles() {
|
|
return alova.Get<Api.SystemManage.AllRole[]>('/systemManage/getAllRoles');
|
|
}
|
|
|
|
/** get user list */
|
|
export function fetchGetUserList(params?: Api.SystemManage.UserSearchParams) {
|
|
return alova.Get<Api.SystemManage.UserList>('/systemManage/getUserList', { params });
|
|
}
|
|
|
|
export type UserModel = Pick<
|
|
Api.SystemManage.User,
|
|
'userName' | 'userGender' | 'nickName' | 'userPhone' | 'userEmail' | 'userRoles' | 'status'
|
|
>;
|
|
/** add user */
|
|
export function addUser(data: UserModel) {
|
|
return alova.Post<null>('/systemManage/addUser', data);
|
|
}
|
|
|
|
/** update user */
|
|
export function updateUser(data: UserModel) {
|
|
return alova.Post<null>('/systemManage/updateUser', data);
|
|
}
|
|
|
|
/** delete user */
|
|
export function deleteUser(id: number) {
|
|
return alova.Delete<null>('/systemManage/deleteUser', { id });
|
|
}
|
|
|
|
/** batch delete user */
|
|
export function batchDeleteUser(ids: number[]) {
|
|
return alova.Delete<null>('/systemManage/batchDeleteUser', { ids });
|
|
}
|
|
|
|
/** get menu list */
|
|
export function fetchGetMenuList() {
|
|
return alova.Get<Api.SystemManage.MenuList>('/systemManage/getMenuList/v2');
|
|
}
|
|
|
|
/** get all pages */
|
|
export function fetchGetAllPages() {
|
|
return alova.Get<string[]>('/systemManage/getAllPages');
|
|
}
|
|
|
|
/** get menu tree */
|
|
export function fetchGetMenuTree() {
|
|
return alova.Get<Api.SystemManage.MenuTree[]>('/systemManage/getMenuTree');
|
|
}
|