| 1234567891011121314151617 |
- import { defHttp } from '@/utils/http/axios';
- enum Api {
- realData = '/fire/show/realData',
- getControl = '/fire/show/control'
- }
- /**
- *
- * @param params
- */
- export const realData = (params) => defHttp.post({ url: Api.realData, params });
- /**
- *智能喷雾降尘装置-控制
- * @param params
- */
- export const getControl = (params) => defHttp.post({ url: Api.getControl, params });
|