|
@@ -49,7 +49,7 @@ import eventBus from "@/utils/eventBus"
|
|
|
const min = 0
|
|
|
const max = 100
|
|
|
const store = useStore()
|
|
|
-
|
|
|
+let closeUpdate = false
|
|
|
const emit = defineEmits(["getStatus"])
|
|
|
const props = defineProps({
|
|
|
audioStatus: {
|
|
@@ -74,9 +74,10 @@ const audioData = ref({
|
|
|
watch(
|
|
|
() => props.audioStatus,
|
|
|
(newVal, oldVal) => {
|
|
|
- if (!newVal) {
|
|
|
+ if (!newVal || closeUpdate) {
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
compareStatus(newVal)
|
|
|
},
|
|
|
{ deep: true } // 添加深度监听
|
|
@@ -100,9 +101,12 @@ const setAudioStatus = type => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+ closeUpdate = true
|
|
|
sendEvent(true)
|
|
|
+
|
|
|
const params = deviceControl.assemblyAudioCommand(customRound(audioData.value[type]), type, props.equipList)
|
|
|
deviceControl.sendCommands(params, () => {
|
|
|
+ closeUpdate = false
|
|
|
debouncedSendEvent(false)
|
|
|
})
|
|
|
}
|