strategy.js 607 B

12345678910111213
  1. import httputils from '@/api/httputils'
  2. //查询当前运行策略
  3. export function queryCommand({getParams}) {
  4. return httputils.getJson(`/duoduo-service/transfer/chiller/command/queryData?projectId=Pj4413030001`, getParams)
  5. }
  6. //查询当日运行策略列表
  7. export function getCommand({postParams}) {
  8. return httputils.postJson(`/duoduo-service/transfer/chiller/command/query?projectId=Pj4413030001`, postParams)
  9. }
  10. //修改策略备注
  11. export function updateCommand({postParams}) {
  12. return httputils.postJson(`/duoduo-service/transfer/chiller/command/update?projectId=Pj4413030001`, postParams)
  13. }