Browse Source

fix:测试音响滑块

anxiaoxia 1 week ago
parent
commit
4c4bb4fe7d

+ 3 - 3
src/components/slider/Slider.vue

@@ -5,9 +5,9 @@
       <div
         class="slider-progress"
         :style="{ width: `${progressWidth}%` }"
-        @touchstart="startDrag"
-        @touchmove="onDrag"
-        @touchend="endDrag">
+        @touchstart.stop="startDrag"
+        @touchmove.stop="onDrag"
+        @touchend.stop="endDrag">
         <span class="slider-progress-line"></span>
       </div>
       <span

+ 6 - 2
src/views/envmonitor/taiguv1/components/Volumn/index.vue

@@ -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)
   })
 }