diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts
index e3d6a56f..a6eee78f 100644
--- a/src/store/modules/app.ts
+++ b/src/store/modules/app.ts
@@ -61,7 +61,7 @@ export const useAppStore = defineStore('app', {
tagsView: true, // 标签页
tagsViewImmerse: false, // 标签页沉浸
tagsViewIcon: true, // 是否显示标签图标
- logo: true, // logo
+ logo: false, // logo
fixedHeader: true, // 固定toolheader
footer: true, // 显示页脚
greyMode: false, // 是否开始灰色模式,用于特殊悼念日
diff --git a/src/views/iot/rule/databridge/IoTDataBridgeForm.vue b/src/views/iot/rule/databridge/IoTDataBridgeForm.vue
index e81eb799..bb38d6be 100644
--- a/src/views/iot/rule/databridge/IoTDataBridgeForm.vue
+++ b/src/views/iot/rule/databridge/IoTDataBridgeForm.vue
@@ -32,29 +32,24 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
确 定
diff --git a/src/views/iot/rule/databridge/config/HttpConfigForm.vue b/src/views/iot/rule/databridge/config/HttpConfigForm.vue
index 8d2b18a1..ecca1df8 100644
--- a/src/views/iot/rule/databridge/config/HttpConfigForm.vue
+++ b/src/views/iot/rule/databridge/config/HttpConfigForm.vue
@@ -37,7 +37,7 @@ import { useVModel } from '@vueuse/core'
defineOptions({ name: 'HttpConfigForm' })
const props = defineProps<{
- modelValue: HttpConfig
+ modelValue: any
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref
diff --git a/src/views/iot/rule/databridge/config/KafkaMQConfigForm.vue b/src/views/iot/rule/databridge/config/KafkaMQConfigForm.vue
index cc5f07a4..07df012c 100644
--- a/src/views/iot/rule/databridge/config/KafkaMQConfigForm.vue
+++ b/src/views/iot/rule/databridge/config/KafkaMQConfigForm.vue
@@ -22,7 +22,7 @@ import { useVModel } from '@vueuse/core'
defineOptions({ name: 'KafkaMQConfigForm' })
const props = defineProps<{
- modelValue: KafkaMQConfig
+ modelValue: any
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref
diff --git a/src/views/iot/rule/databridge/config/MqttConfigForm.vue b/src/views/iot/rule/databridge/config/MqttConfigForm.vue
index 881c83fa..af2578b1 100644
--- a/src/views/iot/rule/databridge/config/MqttConfigForm.vue
+++ b/src/views/iot/rule/databridge/config/MqttConfigForm.vue
@@ -22,7 +22,7 @@ import { useVModel } from '@vueuse/core'
defineOptions({ name: 'MqttConfigForm' })
const props = defineProps<{
- modelValue: MqttConfig
+ modelValue: any
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref
diff --git a/src/views/iot/rule/databridge/config/RabbitMQConfigForm.vue b/src/views/iot/rule/databridge/config/RabbitMQConfigForm.vue
index 6983e396..bd889b1a 100644
--- a/src/views/iot/rule/databridge/config/RabbitMQConfigForm.vue
+++ b/src/views/iot/rule/databridge/config/RabbitMQConfigForm.vue
@@ -31,7 +31,7 @@ import { useVModel } from '@vueuse/core'
defineOptions({ name: 'RabbitMQConfigForm' })
const props = defineProps<{
- modelValue: RabbitMQConfig
+ modelValue: any
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref
diff --git a/src/views/iot/rule/databridge/config/RedisStreamMQConfigForm.vue b/src/views/iot/rule/databridge/config/RedisStreamMQConfigForm.vue
index 24f39664..9b1cc455 100644
--- a/src/views/iot/rule/databridge/config/RedisStreamMQConfigForm.vue
+++ b/src/views/iot/rule/databridge/config/RedisStreamMQConfigForm.vue
@@ -22,7 +22,7 @@ import { useVModel } from '@vueuse/core'
defineOptions({ name: 'RedisStreamMQConfigForm' })
const props = defineProps<{
- modelValue: RedisStreamMQConfig
+ modelValue: any
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref
diff --git a/src/views/iot/rule/databridge/config/RocketMQConfigForm.vue b/src/views/iot/rule/databridge/config/RocketMQConfigForm.vue
index 22d2093b..75a90483 100644
--- a/src/views/iot/rule/databridge/config/RocketMQConfigForm.vue
+++ b/src/views/iot/rule/databridge/config/RocketMQConfigForm.vue
@@ -1,5 +1,5 @@
-
+
@@ -30,7 +30,7 @@ import { useVModel } from '@vueuse/core'
defineOptions({ name: 'RocketMQConfigForm' })
const props = defineProps<{
- modelValue: RocketMQConfig
+ modelValue: any
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref