dsut-table.api.ts 441 B

123456789101112
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. getDustInfo = '/ventanaly-device/safety/reportLocalData/queryReportData',
  4. getFileList = '/ventanaly-device/safety/reportLocalData/list',
  5. }
  6. /**
  7. * 获取粉尘监测结果报表
  8. * @param params
  9. */
  10. export const getDustInfoList = (params) => defHttp.post({ url: Api.getDustInfo, params });
  11. export const getAllFileList = (params) => defHttp.get({ url: Api.getFileList, params });