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