gaoluyang
2026-04-13 8176110122c4b95bc7db5cadc02c23542661448f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from "@/utils/request";
 
export const getEnvironmentalRealData = () => {
  return request({
    url: "/iot/getRealData",
    method: "get",
  });
};
 
export const getEnvironmentalHistoryData = (params) => {
  return request({
    url: "/iot/getHistoryData",
    method: "get",
    params,
  });
};