| 123456789101112 |
- import { defHttp } from '/@/utils/http/axios';
- enum Api {
- // totalList = '/safety/ventanalyAlarmLog/total',
- totalList = '/safety/ventanalyDevice/homedata2',
- getAlarmLogList = '/monitor/groupCompany/getAlarmLogList', //获取各矿预警统计信息
- }
- //预警列表接口
- export const getTotalList = () => defHttp.post({ url: Api.totalList });
- export const getAlarmLogList = (params) => defHttp.post({ url: Api.getAlarmLogList, params });
|