You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
663 B
34 lines
663 B
import request from "@/utils/request"; |
|
|
|
// 楼层 |
|
export function hotBuildList(query) { |
|
return request({ |
|
url: "/space/building/hot_list", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
// 楼栋能耗环比 |
|
export function hotEnergySum(query) { |
|
return request({ |
|
url: "/hot_energy/energySum", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
// 温度变化表 |
|
export function hotWaterTemp(query) { |
|
return request({ |
|
url: "/hot_energy/waterTemp", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
// 温度变化表 |
|
export function hotWaterLevel(query) { |
|
return request({ |
|
url: "/hot_energy/waterLevel", |
|
method: "get", |
|
params: query, |
|
}); |
|
}
|
|
|