service.ts 1.1 KB
Newer Older
1
import request from 'umi-request';
陈帅's avatar
陈帅 committed
2
import { BasicListItemDataType } from './data';
3

陈帅's avatar
陈帅 committed
4 5 6 7 8
interface ParamsType extends Partial<BasicListItemDataType> {
  count?: number;
}

export async function queryFakeList(params: ParamsType) {
9 10 11 12 13
  return request('/api/BLOCK_NAME/fake_list', {
    params,
  });
}

陈帅's avatar
陈帅 committed
14
export async function removeFakeList(params: ParamsType) {
15 16 17 18 19 20 21 22 23 24 25 26 27
  const { count = 5, ...restParams } = params;
  return request('/api/BLOCK_NAME/fake_list', {
    method: 'POST',
    params: {
      count,
    },
    data: {
      ...restParams,
      method: 'delete',
    },
  });
}

陈帅's avatar
陈帅 committed
28
export async function addFakeList(params: ParamsType) {
29 30 31 32 33 34 35 36 37 38 39 40 41
  const { count = 5, ...restParams } = params;
  return request('/api/BLOCK_NAME/fake_list', {
    method: 'POST',
    params: {
      count,
    },
    data: {
      ...restParams,
      method: 'post',
    },
  });
}

陈帅's avatar
陈帅 committed
42
export async function updateFakeList(params: ParamsType) {
43 44 45 46 47 48 49 50 51 52 53 54
  const { count = 5, ...restParams } = params;
  return request('/api/BLOCK_NAME/fake_list', {
    method: 'POST',
    params: {
      count,
    },
    data: {
      ...restParams,
      method: 'update',
    },
  });
}