12345678910111213141516171819202122 |
- import httputils from '@/api/httputils'
- import store from '@/store'
- // 查询运行评价
- export function runDataQury(date, { getParams }) {
- return httputils.getJson(`/duoduo-service/transfer/chiller/command/runDataQuery?projectId=${store.state.projectId}&date=` + date, getParams)
- }
- // 查询相似日样本
- export function energyDayQuery(date, { getParams }) {
- return httputils.getJson(`/duoduo-service/transfer/chiller/command/energyDayQuery?projectId=${store.state.projectId}&date=` + date, getParams)
- }
- // 查询一天的运行评价-室内温度页面左上角温度满足率
- export function querychiller({ postParams }) {
- return httputils.postJson(`/duoduo-service/transfer/chiller/day/rpt/query?projectId=${store.state.projectId}`, postParams)
- }
- // 室内温度位置详情-室内温度页面中间的空间列表
- export function querySpace({ postParams }) {
- return httputils.postJson(`/duoduo-service/object-service/object/space/query`, postParams)
- }
- // 查询空间温度-室内温度页面最下面的图
- export function queryHisdataQueryPeriodData({ postParams }) {
- return httputils.postJson(`/duoduo-service/object-service/object/data/hisdataQueryPeriodData`, postParams)
- }
|