"ListBasicList/src/utils/utils.less" did not exist on "6ef237e517a3a858b95ab13da5454f1751593a9d"
service.ts 211 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4 5 6 7 8
import request from 'umi-request';
import { ListItemDataType } from './data';

export async function queryFakeList(params: ListItemDataType) {
  return request(`/api/BLOCK_NAME/fake_list`, {
    params,
  });
}