1234567891011121314 |
- import { defHttp } from '/@/utils/http/axios';
- enum Api {
- list = '/monitor/system',
- gasSystem = '/ventanaly-device/monitor/gasSystem',
- }
- /**
- * 列表接口
- * @param params
- */
- export const list = (params) => defHttp.post({ url: Api.list, params });
- /** 获取瓦斯系统数据 */
- export const gasSystem = (params?) => defHttp.post({ url: Api.gasSystem, params });
|