bundle-table.api.ts 536 B

1234567891011121314
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. getBundleInfo = '/safety/reportLocalData/queryReportData',
  4. getFileList = '/safety/reportLocalData/list',
  5. getFileListById = '/safety/reportLocalData/queryById',
  6. }
  7. /**
  8. *
  9. * @param params
  10. */
  11. export const getBundleInfoList = (params) => defHttp.post({ url: Api.getBundleInfo, params });
  12. export const getAllFileList = (params) => defHttp.get({ url: Api.getFileList, params });
  13. export const getAllFileListById = (params) => defHttp.get({ url: Api.getFileListById, params });