1234567891011121314151617181920212223242526272829303132333435363738 |
- import http from "@/utils/request";
- export const controlApi = {
- /**
- * 碳源投加 获取echart记录 - 数据看板
- */
- getEchartData: (type, params) => http.get(`/front/bigModel/smartAdd/charList/${type}`, { params }),
-
- /**
- * 碳源投加 基础数值数据
- */
- getNumValue: () => http.get(`/front/bigModel/smartAdd/dataInfo`),
- /**
- * 碳源投加 基础数值数据 - 新
- */
- getBaseData: () => http.get(`/business/medicineParamSetting/getLatestRecord`),
-
- /**
- * 碳源投加 配置记录
- */
- getEchartList: params => http.get(`/business/medicineParamSetting/getList`, { params }),
-
- /**
- * 碳源投加 配置记录
- */
- postAddRecord: data => http.post(`/business/medicineParamSetting`, data),
- /**
- * 碳源投加 系统是否可以投放 - 获取
- */
- getSystemStatus: () => http.get(`/front/bigModel/smartAdd/getSwitchStatus`),
-
- /**
- * 碳源投加 系统是否可以投放 - 更新
- */
- putSystemStatus: data => http.put(`/front/bigModel/smartAdd/updateSwitchStatus`, data),
- }
|