gaoluyang
2026-06-02 5b45cbaaafbc45023d7916d9e700d3c59cc33c03
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,
  });
};