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.
18 lines
350 B
18 lines
350 B
import request from "@/utils/request"; |
|
|
|
// 设备状态 |
|
export function deviceState(query) { |
|
return request({ |
|
url: "/device/hotWater/deviceState", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
// 楼栋能耗 |
|
export function hotEnergyQuery(query) { |
|
return request({ |
|
url: "/hot_energy/query", |
|
method: "get", |
|
params: query, |
|
}); |
|
}
|
|
|