evaluate.js 1.2 KB

12345678910111213141516171819202122
  1. import httputils from '@/api/httputils'
  2. import store from '@/store'
  3. // 查询运行评价
  4. export function runDataQury(date, { getParams }) {
  5. return httputils.getJson(`/duoduo-service/transfer/chiller/command/runDataQuery?projectId=${store.state.projectId}&date=` + date, getParams)
  6. }
  7. // 查询相似日样本
  8. export function energyDayQuery(date, { getParams }) {
  9. return httputils.getJson(`/duoduo-service/transfer/chiller/command/energyDayQuery?projectId=${store.state.projectId}&date=` + date, getParams)
  10. }
  11. // 查询一天的运行评价-室内温度页面左上角温度满足率
  12. export function querychiller({ postParams }) {
  13. return httputils.postJson(`/duoduo-service/transfer/chiller/day/rpt/query?projectId=${store.state.projectId}`, postParams)
  14. }
  15. // 室内温度位置详情-室内温度页面中间的空间列表
  16. export function querySpace({ postParams }) {
  17. return httputils.postJson(`/duoduo-service/object-service/object/space/query`, postParams)
  18. }
  19. // 查询空间温度-室内温度页面最下面的图
  20. export function queryHisdataQueryPeriodData({ postParams }) {
  21. return httputils.postJson(`/duoduo-service/object-service/object/data/hisdataQueryPeriodData`, postParams)
  22. }