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.
19 lines
340 B
19 lines
340 B
import request from "@/utils/request"; |
|
|
|
// 设备监视 |
|
export function temList(query) { |
|
return request({ |
|
url: "/device/indoor/tempList", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
// 历史数据 |
|
export function temHistory(data) { |
|
return request({ |
|
url: "/device/indoor/tempHis", |
|
method: "post", |
|
data: data, |
|
}); |
|
} |
|
|
|
|