分配添加部门

This commit is contained in:
2025-07-30 13:21:57 +08:00
parent ac43bcd1a8
commit 4ba1ab9c89
4 changed files with 53 additions and 6 deletions

View File

@@ -95,3 +95,7 @@ export const updateUserStatus = (id: number, status: number) => {
export const getSimpleUserList = (): Promise<UserVO[]> => {
return request.get({ url: '/system/user/simple-list' })
}
// 获取用户精简信息列表
export const getSimpleUserListPage = (params: PageParam): Promise<UserVO[]> => {
return request.get({ url: '/system/user/page', params })
}