Browse Source

fix: 滑块

anxiaoxia 1 week ago
parent
commit
191edd7562

+ 1 - 1
src/hooks/useDeviceControl.js

@@ -88,7 +88,7 @@ const initDeviceCommand = data => {
   return commands
 }
 // 防抖函数
-const debounce = (func, delay) => {
+export const debounce = (func, delay) => {
   let timer = null
   return (...args) => {
     if (timer) {

+ 6 - 1
src/views/envmonitor/taiguv1/components/Air/AirMore.vue

@@ -144,6 +144,7 @@ import SwitchButton from "@/components/switch-button/SwitchButton.vue"
 import useDeviceControl from "@/hooks/useDeviceControl"
 import { useStore } from "@/store"
 import eventBus from "@/utils/eventBus"
+let closeUpdate = false
 import { computed, nextTick, onMounted, onUnmounted, ref, watch } from "vue"
 const emit = defineEmits(["getStatus"])
 const controlBtn = ref([])
@@ -213,7 +214,7 @@ const allAirStatus = computed(() => store.state.taiguv1.airSwtichStatus)
 watch(
   () => props.status,
   (newVal, oldVal) => {
-    if (!newVal) {
+    if (!newVal || closeUpdate) {
       return
     }
     let { minTempSet, maxTempSet } = airData.value
@@ -224,6 +225,9 @@ watch(
 watch(
   () => props.airList,
   (newVal, oldVal) => {
+    if (!newVal || closeUpdate) {
+      return
+    }
     compareStatus(newVal)
     // 为所有item初始化按钮状态
     newVal.forEach(item => {
@@ -354,6 +358,7 @@ const handle = (type, data, all) => {
   }
 }
 const sendEvent = close => {
+  closeUpdate = close
   eventBus.emit("close_deviece_timer", { close })
 }
 const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)

+ 6 - 8
src/views/envmonitor/taiguv1/components/Air/index.vue

@@ -78,8 +78,8 @@ import useDeviceControl from "@/hooks/useDeviceControl"
 import { useStore } from "@/store"
 import { parseImgUrl } from "@/utils"
 import eventBus from "@/utils/eventBus"
-import { nextTick } from "process"
-import { computed, onMounted, onUnmounted, ref, watch } from "vue"
+import { computed, onMounted, onUnmounted, nextTick, ref, watch } from "vue"
+let closeUpdate = false
 const store = useStore()
 const deviceControl = useDeviceControl()
 const controlBtn = ref([])
@@ -125,7 +125,7 @@ const airData = ref({
 watch(
   () => props.status,
   (newVal, oldVal) => {
-    if (!newVal) {
+    if (!newVal || closeUpdate) {
       return
     }
     compareStatus(newVal)
@@ -195,14 +195,13 @@ const buttonStates = ref({
   plus: false
 })
 const sendEvent = close => {
+  closeUpdate = close
   eventBus.emit("close_deviece_timer", { close })
 }
 onMounted(() => {
   nextTick(() => {
-    nextTick(() => {
-      controlBtn.value.forEach(button => {
-        button.addEventListener("touchstart", handleTouchStart)
-      })
+    controlBtn.value.forEach(button => {
+      button.addEventListener("touchstart", handleTouchStart)
     })
   })
 })
@@ -424,7 +423,6 @@ const searchMore = () => {
         margin-top: 8px;
         width: 28.3px;
         height: 28.3px;
-
       }
     }
   }

+ 34 - 26
src/views/envmonitor/taiguv1/components/Curtain/CurtainMore.vue

@@ -7,27 +7,33 @@
         </div>
       </div>
       <div class="right">
-        <div class="control_all" :class="topActive ? 'active' : ''" @click="handle('all', 1, '开启中', 'EquipOnSet')">
+        <div
+          class="control_all"
+          :class="topActive ? 'active' : ''"
+          @click="debouncedHandle('all', 1, '开启中', 'EquipOnSet')">
           {{ $t(`common.全开`) }}
         </div>
-        <div class="control_all" :class="downActive ? 'active' : ''" @click="handle('all', 2, '关闭中', 'EquipOffSet')">
+        <div
+          class="control_all"
+          :class="downActive ? 'active' : ''"
+          @click="debouncedHandle('all', 2, '关闭中', 'EquipOffSet')">
           {{ $t(`common.全关`) }}
         </div>
       </div>
     </div>
-    <div class="control_status">{{ controlStatus ? $t(`curtains.${controlStatus}`) : '' }}</div>
+    <div class="control_status">{{ controlStatus ? $t(`curtains.${controlStatus}`) : "" }}</div>
     <div class="light-bottom">
       <div class="item-box" v-for="item in childCurtains" :key="item.id">
         <div class="name">{{ item.localName }}</div>
         <div class="control-box">
-          <div class="control" @click="handle('child', 1, '开启中', 'EquipOnSet', item.id)">
-            <img class="control-icon" :src="item.isActive && item.activeButton === 1 ? UpActiveIcon : UpUnActiveIcon" alt="" />
+          <div class="control" @click="debouncedHandle('child', 1, '开启中', 'EquipOnSet', item.id)">
+            <img :src="item.isActive && item.activeButton === 1 ? UpActiveIcon : UpUnActiveIcon" alt="" />
           </div>
-          <div class="control" @click="handle('child', 3, '暂停中', 'EquipOnSet', item.id)">
-            <img class="control-icon" :src="item.isActive && item.activeButton === 2 ? StopActiveIcon : StopUnActiveIcon" alt="" />
+          <div class="control" @click="debouncedHandle('child', 3, '暂停中', 'EquipOnSet', item.id)">
+            <img :src="item.isActive && item.activeButton === 2 ? StopActiveIcon : StopUnActiveIcon" alt="" />
           </div>
-          <div class="control" @click="handle('child', 2, '关闭中', 'EquipOnSet', item.id)">
-            <img class="control-icon" :src="item.isActive && item.activeButton === 0 ? DownActiveIcon : DownUnActiveIcon" alt="" />
+          <div class="control" @click="debouncedHandle('child', 2, '关闭中', 'EquipOnSet', item.id)">
+            <img :src="item.isActive && item.activeButton === 0 ? DownActiveIcon : DownUnActiveIcon" alt="" />
           </div>
         </div>
       </div>
@@ -36,15 +42,16 @@
 </template>
 
 <script setup>
-import { httpSetEnv } from '@/apis/taiguv1'
-import curtainIcon from '@/assets/taiguv1/svg/Curtain_card_active_icon.svg'
-import DownActiveIcon from '@/assets/taiguv1/svg/down_active_icon.svg'
-import DownUnActiveIcon from '@/assets/taiguv1/svg/down_icon.svg'
-import StopActiveIcon from '@/assets/taiguv1/svg/stop_active_icon.svg'
-import StopUnActiveIcon from '@/assets/taiguv1/svg/stop_icon.svg'
-import UpActiveIcon from '@/assets/taiguv1/svg/up_active_icon.svg'
-import UpUnActiveIcon from '@/assets/taiguv1/svg/up_icon.svg'
-import { ref, watch } from 'vue'
+import { httpSetEnv } from "@/apis/taiguv1"
+import curtainIcon from "@/assets/taiguv1/svg/Curtain_card_active_icon.svg"
+import DownActiveIcon from "@/assets/taiguv1/svg/down_active_icon.svg"
+import DownUnActiveIcon from "@/assets/taiguv1/svg/down_icon.svg"
+import StopActiveIcon from "@/assets/taiguv1/svg/stop_active_icon.svg"
+import StopUnActiveIcon from "@/assets/taiguv1/svg/stop_icon.svg"
+import UpActiveIcon from "@/assets/taiguv1/svg/up_active_icon.svg"
+import UpUnActiveIcon from "@/assets/taiguv1/svg/up_icon.svg"
+import { ref, watch } from "vue"
+import { debounce } from "@/hooks/useDeviceControl"
 const props = defineProps({
   currentCurtains: {
     type: Array,
@@ -52,14 +59,14 @@ const props = defineProps({
   }
 })
 const childCurtains = ref([])
-const controlStatus = ref('')
+const controlStatus = ref("")
 const topActive = ref(false)
 const downActive = ref(false)
 let timer = null // 添加timer变量
 let btnTimer = null
 const setEnnv = (type, value, code, curentID) => {
   const paramsData = []
-  if (type === 'all') {
+  if (type === "all") {
     childCurtains.value.forEach(item => {
       paramsData.push({
         id: item.id,
@@ -88,9 +95,9 @@ const handle = (type, status, name, code, curentID) => {
   }
   // 设置新的定时器并保存引用
   timer = setTimeout(() => {
-    controlStatus.value = ''
+    controlStatus.value = ""
   }, 3000)
-  if (type === 'all') {
+  if (type === "all") {
     if (status === 1) {
       topActive.value = true
     } else {
@@ -120,6 +127,7 @@ const handle = (type, status, name, code, curentID) => {
     }, 1000)
   }
 }
+const debouncedHandle = debounce(handle, 500)
 watch(
   () => props.currentCurtains,
   newVal => {
@@ -172,7 +180,7 @@ watch(
         box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
         color: #001428;
         text-align: center;
-        font-family: 'PingFang SC';
+        font-family: "PingFang SC";
         font-size: 14px;
         font-style: normal;
         font-weight: 400;
@@ -192,7 +200,7 @@ watch(
     color: var(--Blue, #001428);
     text-align: center;
     /* Chi/Body Large */
-    font-family: 'PingFang SC';
+    font-family: "PingFang SC";
     font-size: 16px;
     font-style: normal;
     font-weight: 300;
@@ -216,7 +224,7 @@ watch(
       .name {
         //styleName: Chi/Body Regular;
         color: var(--Blue, #001428);
-        font-family: 'PingFang SC';
+        font-family: "PingFang SC";
         font-size: 14px;
         font-style: normal;
         font-weight: 400;
@@ -237,7 +245,7 @@ watch(
           .control-icon {
             width: 28.3px;
             height: 28.3px;
-        }
+          }
           // img{
           //     width: 17px;
           //     height: 17px;

+ 32 - 30
src/views/envmonitor/taiguv1/components/Curtain/index.vue

@@ -12,11 +12,11 @@
     </div>
     <div class="bottom">
       <div class="text">{{ $t(`curtains.窗帘`) }}</div>
-      <div class="status">{{ controlStatus ? $t(`curtains.${controlStatus}`) : '' }}</div>
+      <div class="status">{{ controlStatus ? $t(`curtains.${controlStatus}`) : "" }}</div>
       <div class="control-box">
         <div v-for="item in controlName" :key="item.value">
-          <div class="control-item" @click.stop="handle(item.value, item.status, item.code)">
-            <img class="control-icon" :src="item.isActive ? item.iconActive : item.iconUnActive" alt="" />
+          <div class="control-item" @click.stop="debouncedHandle(item.value, item.status, item.code)">
+            <img :src="item.isActive ? item.iconActive : item.iconUnActive" alt="" />
           </div>
         </div>
       </div>
@@ -25,52 +25,53 @@
 </template>
 
 <script setup>
-import { httpSetEnv } from '@/apis/taiguv1'
-import CurtainCardIcon from '@/assets/taiguv1/svg/Curtain_card_active_icon.svg'
-import CurtainCardUnActiveIcon from '@/assets/taiguv1/svg/Curtain_card_unactive_icon.svg'
-import DownActiveIcon from '@/assets/taiguv1/svg/down_active_icon.svg'
-import DownUnActiveIcon from '@/assets/taiguv1/svg/down_icon.svg'
-import FilterIcon from '@/assets/taiguv1/svg/filter_icon.svg'
-import StopActiveIcon from '@/assets/taiguv1/svg/stop_active_icon.svg'
-import StopUnActiveIcon from '@/assets/taiguv1/svg/stop_icon.svg'
-import UpActiveIcon from '@/assets/taiguv1/svg/up_active_icon.svg'
-import UpUnActiveIcon from '@/assets/taiguv1/svg/up_icon.svg'
-import { onBeforeUnmount, onMounted, ref, watch } from 'vue'
-const controlStatus = ref('')
+import { httpSetEnv } from "@/apis/taiguv1"
+import CurtainCardIcon from "@/assets/taiguv1/svg/Curtain_card_active_icon.svg"
+import CurtainCardUnActiveIcon from "@/assets/taiguv1/svg/Curtain_card_unactive_icon.svg"
+import DownActiveIcon from "@/assets/taiguv1/svg/down_active_icon.svg"
+import DownUnActiveIcon from "@/assets/taiguv1/svg/down_icon.svg"
+import FilterIcon from "@/assets/taiguv1/svg/filter_icon.svg"
+import StopActiveIcon from "@/assets/taiguv1/svg/stop_active_icon.svg"
+import StopUnActiveIcon from "@/assets/taiguv1/svg/stop_icon.svg"
+import UpActiveIcon from "@/assets/taiguv1/svg/up_active_icon.svg"
+import UpUnActiveIcon from "@/assets/taiguv1/svg/up_icon.svg"
+import { onBeforeUnmount, onMounted, ref, watch } from "vue"
+import { debounce } from "@/hooks/useDeviceControl"
+const controlStatus = ref("")
 const controlName = ref([
   {
     isActive: false,
-    name: '上',
+    name: "上",
     value: 1,
-    status: '开启中',
-    code: 'EquipOnSet',
+    status: "开启中",
+    code: "EquipOnSet",
     iconActive: UpActiveIcon,
     iconUnActive: UpUnActiveIcon
   },
   {
     isActive: false,
-    name: '停',
+    name: "停",
     value: 3,
-    status: '暂停中',
-    code: 'EquipOnSet',
+    status: "暂停中",
+    code: "EquipOnSet",
     iconActive: StopActiveIcon,
     iconUnActive: StopUnActiveIcon
   },
   {
     isActive: false,
-    name: '下',
+    name: "下",
     value: 2,
-    status: '关闭中',
-    code: 'EquipOnSet',
+    status: "关闭中",
+    code: "EquipOnSet",
     iconActive: DownActiveIcon,
     iconUnActive: DownUnActiveIcon
   }
 ])
 const isOpen = ref(true)
 const isActive = ref(false)
-const emit = defineEmits(['showMore'])
+const emit = defineEmits(["showMore"])
 const searchMore = () => {
-  emit('showMore', 'curtain', true)
+  emit("showMore", "curtain", true)
 }
 let timer = null // 添加timer变量
 let btnTimer = null
@@ -98,9 +99,10 @@ const handle = (value, status, code) => {
   }
   // 设置新的定时器并保存引用
   timer = setTimeout(() => {
-    controlStatus.value = ''
+    controlStatus.value = ""
   }, 3000)
 }
+const debouncedHandle = debounce(handle, 500)
 const props = defineProps({
   currentCurtains: {
     type: Array,
@@ -200,7 +202,7 @@ onMounted(() => {})
       height: 15px;
       margin-bottom: 8px;
       color: var(--Grey, #74808d);
-      font-family: 'PingFang SC';
+      font-family: "PingFang SC";
       font-size: 11px;
       font-style: normal;
       font-weight: 400;
@@ -218,8 +220,8 @@ onMounted(() => {})
         width: 40px;
         height: 40px;
         .control-icon {
-            width: 28.3px;
-            height: 28.3px;
+          width: 28.3px;
+          height: 28.3px;
         }
       }
     }

+ 6 - 1
src/views/envmonitor/taiguv1/components/Lamp/LightMore.vue

@@ -64,6 +64,7 @@ const store = useStore()
 const deviceControl = useDeviceControl()
 const min = 0
 const max = 100
+let closeUpdate = false
 // 接收父组件传递的初始状态
 const props = defineProps({
   lampStatus: {
@@ -116,7 +117,7 @@ const allLampStatus = computed(() => store.state.taiguv1.lampSwitchStatus)
 watch(
   () => props.lampStatus,
   (newVal, oldVal) => {
-    if (!newVal) {
+    if (!newVal || closeUpdate) {
       return
     }
     lampData.value = { ...newVal }
@@ -126,6 +127,9 @@ watch(
 watch(
   () => props.equipList,
   (newVal, oldVal) => {
+    if (!newVal || closeUpdate) {
+      return
+    }
     compareStatus(newVal)
   },
   { deep: true }
@@ -207,6 +211,7 @@ const setLampStatus = type => {
   })
 }
 const sendEvent = close => {
+  closeUpdate = close
   eventBus.emit("close_deviece_timer", { close })
 }
 const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)

+ 4 - 1
src/views/envmonitor/taiguv1/components/Lamp/index.vue

@@ -51,6 +51,7 @@ import { computed, ref, watch } from "vue"
 import eventBus from "@/utils/eventBus"
 const min = 0
 const max = 100
+let closeUpdate = false
 const emit = defineEmits(["getStatus", "showMore"])
 
 // 接收父组件传递的开关状态
@@ -88,7 +89,7 @@ const lampData = ref({
 watch(
   () => props.lampStatus,
   (newVal, oldVal) => {
-    if (!newVal) {
+    if (!newVal || closeUpdate) {
       return
     }
     compareStatus(newVal)
@@ -130,6 +131,7 @@ const compareStatus = data => {
   emit("getStatus", lampData.value.isOpen)
 }
 const sendEvent = close => {
+  closeUpdate = close
   eventBus.emit("close_deviece_timer", { close })
 }
 const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)
@@ -144,6 +146,7 @@ const setLampStatus = type => {
       }
     })
   }
+
   sendEvent(true)
   const params = deviceControl.assemblyLampCommand(lampData.value[type], type, props.equipList)
 

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

@@ -101,12 +101,11 @@ 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)
   })
 }
@@ -143,6 +142,7 @@ const compareStatus = data => {
   }
 }
 const sendEvent = close => {
+  closeUpdate = close
   eventBus.emit("close_deviece_timer", { close })
 }
 const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)