bundleSpy-table.api.ts 427 B

123456789101112
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. getbunudleSpyInfo = '/ventanaly-device/safety/reportLocalData/queryReportData',
  4. getFileList = '/ventanaly-device/safety/reportLocalData/list',
  5. }
  6. /**
  7. *
  8. * @param params
  9. */
  10. export const getbundleSpyInfoList = (params) => defHttp.post({ url: Api.getbunudleSpyInfo, params });
  11. export const getAllFileList = (params) => defHttp.get({ url: Api.getFileList, params });