Sanakey
3 天以前 b5c1614fe473330ceca8b7cff0f1802e19bd5039
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import {defHttp} from '@/utils/http/axios';
import {BasicPageParams} from "@/api/model/baseModel";
 
type CluesListParams = Partial<BasicPageParams>;
 
enum Api {
  LIST = '/crm/clues/list.do',
}
 
/**
 * @description: Get sample list value
 */
 
export const cluesListApi = (params:CluesListParams) => {
  // params.pageNo = params.page;
  Logger.info('cluesListApi', params);
  return defHttp.post({
    url: Api.LIST,
    params,
    // headers: {
    //   // @ts-ignore
    //   // ignoreCancelToken: true,
    //   // 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
    // },
  });
}