gaoluyang
2026-04-15 f6c198c774f1278f97f2d6b01fcf8fca6bfaf815
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,
  });
};