dsut-table.api.ts 287 B

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