You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
|
1 year ago
|
// import { transforUserData } from '@/utils';
|
||
|
|
import { request } from '../../request';
|
||
|
|
// import { adapterOfFetchUserList } from './management.adapter';
|
||
|
|
|
||
|
|
/** 获取用户列表 */
|
||
|
|
export const fetchUserList = async query => {
|
||
|
|
const { rows, total } = await request.get('/system/user/list', query);
|
||
|
|
return { rows, total };
|
||
|
|
};
|