安琪酵母(西藏)益生菌信息采集中心智能实验室
longyvfengyun
2023-08-24 079131b6a70ecec89a98fcf80894758847718f96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import axios from "@/assets/js/axios";
 
/**
 * 读取参数
 * @param devId 设备ID
 * @return {Promise<axios.AxiosResponse<any>> | *}
 */
export const getAirParam = (devId)=>{
  return axios({
    method: "GET",
    url: "/envirParam/searchAir",
    params: {
      devId
    }
  });
}
 
/**
 * 设置空调参数
 * @param data
 * @return {Promise<axios.AxiosResponse<any>> | *}
 */
export const setAirParam = (data)=>{
  return axios({
    method: "POST",
    url: "/envirParam/updateAir",
    data,
  });
}