control.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. import http from "@/utils/request";
  2. export const controlApi = {
  3. /**
  4. * 碳源投加 获取echart记录 - 数据看板
  5. */
  6. getEchartData: (type, params) => http.get(`/front/bigModel/smartAdd/charList/${type}`, { params }),
  7. /**
  8. * 碳源投加 基础数值数据
  9. */
  10. getNumValue: () => http.get(`/front/bigModel/smartAdd/dataInfo`),
  11. /**
  12. * 碳源投加 基础数值数据 - 新
  13. */
  14. getBaseData: () => http.get(`/business/medicineParamSetting/getLatestRecord`),
  15. /**
  16. * 碳源投加 配置记录
  17. */
  18. getEchartList: params => http.get(`/business/medicineParamSetting/getList`, { params }),
  19. /**
  20. * 碳源投加 配置记录
  21. */
  22. postAddRecord: data => http.post(`/business/medicineParamSetting`, data),
  23. /**
  24. * 碳源投加 系统是否可以投放 - 获取
  25. */
  26. getSystemStatus: () => http.get(`/front/bigModel/smartAdd/getSwitchStatus`),
  27. /**
  28. * 碳源投加 系统是否可以投放 - 更新
  29. */
  30. putSystemStatus: data => http.put(`/front/bigModel/smartAdd/updateSwitchStatus`, data),
  31. }