import axios from "axios"; import { showNotify } from "vant" export function commandOpenDoor(data:any) { axios({ method: 'post', url: `http://100.64.0.1/api/cabinet/v1/open`, data, headers: { 'Content-Type': 'application/json' } }).then(doorRet => { if (doorRet.data.code == 200) { // WebSocketFun() } else if (doorRet.data.code == 201) { showNotify({ message: '请先打开柜门' }) } else { showNotify({ message: '请先关闭其他抽屉!' }) } }) }