deviceMonitorWarn.api.ts 424 B

1234567891011
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. totalList = '/safety/ventanalyAlarmLog/total',
  4. getAlarmLogList = '/ventanaly-device/monitor/groupCompany/getAlarmLogList', //获取各矿预警统计信息
  5. }
  6. //预警列表接口
  7. export const getTotalList = (params) => defHttp.get({ url: Api.totalList, params });
  8. export const getAlarmLogList = (params) => defHttp.post({ url: Api.getAlarmLogList, params });