1234567891011121314151617181920 |
- import { defHttp } from '/@/utils/http/axios';
- import { PageParams, RentListGetResultModel } from './model';
- enum Api {
- pageList = '/zfb/feedback/list',
- }
- /**
- * @description: Get sample list value
- */
- export const ListApi = (params: PageParams) =>
- defHttp.get<RentListGetResultModel>({
- url: Api.pageList,
- params,
- headers: {
- // @ts-ignore
- ignoreCancelToken: true,
- },
- });
|