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
371 B
18 lines
371 B
import request from "@/utils/request"; |
|
|
|
// 公共信息 |
|
export function waterPublic(query) { |
|
return request({ |
|
url: "/device/hotWater/monitorPublic", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
// 系统状态显示 |
|
export function waterMonitorList(query) { |
|
return request({ |
|
url: "/device/hotWater/monitorList", |
|
method: "get", |
|
params: query, |
|
}); |
|
}
|
|
|