1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import axios from "@/assets/js/axios";
|
| /**
| * 读取参数
| * @param info 设备信息
| * @return {Promise<axios.AxiosResponse<any>> | *}
| */
| export const changeDoorState = (info, dwstaic)=>{
| return axios({
| method: "POST",
| url: "/CarCamera/controllCarCamera",
| data: {
| ...info,
| lgatewayIndex: -1,
| dwstaic
| }
| });
| }
|
|