fix: 场景联动中设备状态变更配置的参数值(在线-online,离线-offline)与后台实际使用的(在线-1,离线-2)不一致,导致场景不生效。

pull/878/head
panda 2026-05-22 10:50:28 +08:00
parent b5bc537f86
commit 1888757854
1 changed files with 2 additions and 2 deletions

View File

@ -438,12 +438,12 @@ export const IoTDeviceStatusEnum = {
// 在线状态
ONLINE: {
label: '在线',
value: 'online',
value: '1',
tagType: 'success'
},
OFFLINE: {
label: '离线',
value: 'offline',
value: '2',
tagType: 'danger'
},
// 启用状态