|
|
@ -217,6 +217,7 @@ export default { |
|
|
|
let _data = { |
|
|
|
device: curStoreInfo.device_name, // 中控名, |
|
|
|
data: _query, // 后端数据结构, 参考src\subpackage\device\js\ouxuanac.md |
|
|
|
hardware_id: switchInfo.id + '', // 20220512 新增参数 |
|
|
|
}; |
|
|
|
|
|
|
|
//2021-12-17 群里说的那个锁的 需要全部关闭灯的按钮从 set-rpio 变成 set-rpio-lock 普通开灯保持不变 加锁开灯(长开) set-rpio-lock |
|
|
@ -229,7 +230,7 @@ export default { |
|
|
|
// 20220507 门闸 GateControl 要是 hardware_mac_addr 不为空 device_name 替换成 hardware_mac_addr |
|
|
|
// 另外多做一步 传多一个 "hardware_id":id 给我 |
|
|
|
if(switchInfo.hardware_type === 'GateControl'&&!!switchInfo.hardware_mac_addr)_data['device'] = switchInfo.hardware_mac_addr; |
|
|
|
if(switchInfo.hardware_type === 'GateControl')_data['hardware_id'] = switchInfo.id; |
|
|
|
// if(switchInfo.hardware_type === 'GateControl')_data['hardware_id'] = switchInfo.id; |
|
|
|
|
|
|
|
return _data; |
|
|
|
}, |
|
|
|