diff --git a/src/api/iot/rule/scene/scene.types.ts b/src/api/iot/rule/scene/scene.types.ts index c8f4a05da..5d3d59a46 100644 --- a/src/api/iot/rule/scene/scene.types.ts +++ b/src/api/iot/rule/scene/scene.types.ts @@ -10,8 +10,7 @@ const IotRuleSceneTriggerTypeEnum = { const IotRuleSceneActionTypeEnum = { DEVICE_CONTROL: 1, // 设备执行 - ALERT: 2, // 告警执行 - DATA_BRIDGE: 3 // 桥接执行 + ALERT: 2 // 告警执行 } as const const IotDeviceMessageTypeEnum = { @@ -104,7 +103,6 @@ interface ActionConfig { type: number // 执行类型 deviceControl?: ActionDeviceControl // 设备控制 alert?: ActionAlert // 告警执行 - dataBridgeId?: number // 数据流转目的编号 } // 主接口 diff --git a/src/views/iot/rule/data/sink/config/HttpConfigForm.vue b/src/views/iot/rule/data/sink/config/HttpConfigForm.vue index 36dd341a3..5fa759bcd 100644 --- a/src/views/iot/rule/data/sink/config/HttpConfigForm.vue +++ b/src/views/iot/rule/data/sink/config/HttpConfigForm.vue @@ -3,6 +3,7 @@