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