| 123456789101112 |
- import { defHttp } from '/@/utils/http/axios';
- enum Api {
- getbunudleSpyInfo = '/ventanaly-device/safety/reportLocalData/queryReportData',
- getFileList = '/ventanaly-device/safety/reportLocalData/list',
- }
- /**
- *
- * @param params
- */
- export const getbundleSpyInfoList = (params) => defHttp.post({ url: Api.getbunudleSpyInfo, params });
- export const getAllFileList = (params) => defHttp.get({ url: Api.getFileList, params });
|