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 {
  SELECT_INFO = '/crm/base/selectInfo.do',
}
 
/**
 * @description: Get sample list value
 */
 
export const getSelectInfoApi = (params) => {
  // params.pageNo = params.page;
  Logger.info('getSelectInfoApi', params);
  return defHttp.post({
    url: Api.SELECT_INFO,
    params,
    // headers: {
    //   // @ts-ignore
    //   // ignoreCancelToken: true,
    //   // 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
    // },
  });
}