Browse Source

fix: 音响、投屏实效

anxiaoxia 5 days ago
parent
commit
da9c34358f

+ 104 - 62
src/store/modules/taiguv1/index.js

@@ -2,96 +2,138 @@ const state = {
   airSwtichStatus: {},
   lampSwitchStatus: {},
   audioSwitchStatus: {},
-  screenSwitchStatus:{}
-};
+  screenSwitchStatus: {},
+  audioVolume: {},
+  screenType: {}
+}
 
 const mutations = {
   SET_AIES_TATUS: (state, air) => {
-    let { id, status } = air;
-    state.airSwtichStatus[id] = {...state.airSwtichStatus[id],...status};
+    let { id, status } = air
+    state.airSwtichStatus[id] = { ...state.airSwtichStatus[id], ...status }
   },
   SET_LAMP_STATUS: (state, lamp) => {
-    let { id, status } = lamp;
-    state.lampSwitchStatus[id] = {...state.lampSwitchStatus[id],...status};
+    let { id, status } = lamp
+    state.lampSwitchStatus[id] = { ...state.lampSwitchStatus[id], ...status }
   },
   SET_AUDIO_STATUS: (state, audio) => {
-    let { id, status } = audio;
-    state.audioSwitchStatus[id] = {...state.audioSwitchStatus[id],...status};
+    let { id, status } = audio
+    state.audioSwitchStatus[id] = { ...state.audioSwitchStatus[id], ...status }
   },
   SET_SCREEN_STATUS: (state, audio) => {
-    let { id, status } = audio;
-    state.screenSwitchStatus[id] = {...state.screenSwitchStatus[id],...status};
+    let { id, status } = audio
+    state.screenSwitchStatus[id] = { ...state.screenSwitchStatus[id], ...status }
   },
-};
+  SET_AUDIO_VOLUME: (state, volume) => {
+    state.audioVolume.volumeSet = volume
+  },
+  SET_SCREEN_TYPE: (state, type) => {
+    state.screenType.typeSet = type
+  },
+  // 添加新的 mutation 用于设置 timer
+  SET_AUDIO_TIMER: (state, { id, timer }) => {
+    if (state.audioSwitchStatus[id]) {
+      state.audioSwitchStatus[id].timer = timer
+    }
+  }
+}
 
 const actions = {
   setAirStatus({ commit, state }, air) {
-    console.log('setAirStatus')
-    commit("SET_AIES_TATUS", air);
-    (function (airData) {
+    console.log("setAirStatus")
+    commit("SET_AIES_TATUS", air)
+    ;(function (airData) {
       setTimeout(() => {
-        if (
-          state.airSwtichStatus[airData.id] &&
-          state.airSwtichStatus[airData.id].loading == true
-        ) {
-            debugger
-          airData.status.loading = false;
-          airData.status.lastSwitchStatus = null;
-          commit("SET_AIES_TATUS", airData);
+        if (state.airSwtichStatus[airData.id] && state.airSwtichStatus[airData.id].loading == true) {
+          debugger
+          airData.status.loading = false
+          airData.status.lastSwitchStatus = null
+          commit("SET_AIES_TATUS", airData)
         }
-      }, 1000 * 15);
-    })(air);
+      }, 1000 * 15)
+    })(air)
   },
   setLampStatus({ commit, state }, lamp) {
-    commit("SET_LAMP_STATUS", lamp);
-    (function (lampData) {
-      setTimeout(() => {
-        if (
-          state.lampSwitchStatus[lampData.id] &&
-          state.lampSwitchStatus[lampData.id].loading == true
-        ) {
-          lampData.status.loading = false;
-          lampData.status.lastSwitchStatus = null;
-          commit("SET_LAMP_STATUS", lampData);
+    commit("SET_LAMP_STATUS", lamp)
+    state.lampSwitchStatus[lampData.id] = (function (lampData) {
+      return setTimeout(() => {
+        if (state.lampSwitchStatus[lampData.id] && state.lampSwitchStatus[lampData.id].loading == true) {
+          lampData.status.loading = false
+          lampData.status.lastSwitchStatus = null
+          commit("SET_LAMP_STATUS", lampData)
         }
-      }, 1000 * 5);
-    })(lamp);
+      }, 1000 * 5)
+    })(lamp)
   },
   setAudioStatus({ commit, state }, audio) {
-    commit("SET_AUDIO_STATUS", audio);
-    (function (audioData) {
+    commit("SET_AUDIO_STATUS", audio)
+
+    // 清除现有 timer
+    commit("SET_AUDIO_TIMER", {
+      id: audio.id,
+      timer: null
+    })
+
+    const timer = setTimeout(() => {
+      if (state.audioSwitchStatus[audio.id]?.loading === true) {
+        commit("SET_AUDIO_STATUS", {
+          id: audio.id,
+          status: {
+            loading: false,
+            lastSwitchStatus: null
+          }
+        })
+      }
+    }, 1000 * 30)
+
+    commit("SET_AUDIO_TIMER", {
+      id: audio.id,
+      timer
+    })
+  },
+  setScreenStatus({ commit, state }, screen) {
+    commit("SET_SCREEN_STATUS", screen)
+    ;(function (screenData) {
       setTimeout(() => {
-        if (
-          state.audioSwitchStatus[audioData.id] &&
-          state.audioSwitchStatus[audioData.id].loading == true
-        ) {
-            audioData.status.loading = false;
-            audioData.status.lastSwitchStatus = null;
-          commit("SET_AUDIO_STATUS", audioData);
+        if (state.screenSwitchStatus[screenData.id] && state.screenSwitchStatus[screenData.id].loading == true) {
+          screenData.status.loading = false
+          screenData.status.lastSwitchStatus = null
+          commit("SET_SCREEN_STATUS", screenData)
         }
-      }, 1000 * 5);
-    })(audio);
+      }, 1000 * 15)
+    })(screen)
   },
-  setScreenStatus({ commit, state }, screen) {
-    commit("SET_SCREEN_STATUS", screen);
-    (function (screenData) {
+  setAudioVolume({ commit, state }, volume) {
+    if (state.audioVolume.oldVolume == volumeData) {
+      commit("SET_AUDIO_VOLUME", null)
+    } else {
+      commit("SET_AUDIO_VOLUME", volume)
+    }
+
+    if (state.audioVolume.timer) {
+      clearTimeout(state.audioVolume.timer)
+      commit("SET_AUDIO_TIMER", null) // 改用 mutation
+    }
+    const timer = setTimeout(() => {
+      commit("SET_AUDIO_VOLUME", null)
+    }, 1000 * 30)
+    commit("SET_AUDIO_TIMER", timer) // 改用 mutation
+  },
+  setScreenType({ commit, state }, type) {
+    commit("SET_SCREEN_TYPE", type)
+    ;(function (typeData) {
       setTimeout(() => {
-        if (
-          state.screenSwitchStatus[screenData.id] &&
-          state.screenSwitchStatus[screenData.id].loading == true
-        ) {
-            screenData.status.loading = false;
-            screenData.status.lastSwitchStatus = null;
-          commit("SET_SCREEN_STATUS", screenData);
+        if (state.screenType.oldType == typeData) {
+          state.screenType.oldType = null
         }
-      }, 1000 * 5);
-    })(screen);
+      }, 1000 * 5)
+    })
   }
-};
+}
 
 export default {
   namespaced: true,
   state,
   mutations,
-  actions,
-};
+  actions
+}

+ 0 - 1
src/views/envmonitor/taiguv1/components/Air/index.vue

@@ -154,7 +154,6 @@ const compareStatus = data => {
       })
       updateAirData()
     } else if (lastSwitchStatus === null) {
-      console.log("debugger")
       updateAirData()
     } else {
       airData.value = {

+ 167 - 163
src/views/envmonitor/taiguv1/components/Screen/index.vue

@@ -1,192 +1,196 @@
 <template>
-    <div class="screen-box active">
-        <div class="top">
-            <img
-                :src="parseImgUrl('taiguv1/envmonitor', 'active/screen_cast.svg')"
-                alt=""
-            />
-            <div class="top-right">
-                <div class="title">{{$t(`screen.投屏`)}}</div>
-                <div class="status">{{$t(`screen.切换视频源`)}}</div>
-            </div>
-        </div>
-        <div class="bottom">
-            <div
-                class="btn"
-                :class="screenData.runStatus == 1 ? 'btn-active' : ''"
-                @click="setScreenStatus('runStatus',1)"
-            >
-                {{$t(`screen.有线投屏`)}}
-            </div>
-            <div
-                class="btn"
-                :class="screenData.runStatus == 2 ? 'btn-active' : ''"
-                @click="setScreenStatus('runStatus',2)"
-            >
-                {{$t(`screen.无线投屏`)}}
-            </div>
-            <div
-                class="btn"
-                :class="screenData.runStatus == 3 ? 'btn-active' : ''"
-                v-if="['ROOM EOS', 'ROOM GAIA'].includes(roomInfo.name)" 
-                @click="setScreenStatus('runStatus',3)"
-            >
-                Teams Room
-            </div>
-        </div>
+  <div class="screen-box active">
+    <div class="top">
+      <img :src="parseImgUrl('taiguv1/envmonitor', 'active/screen_cast.svg')" alt="" />
+      <div class="top-right">
+        <div class="title">{{ $t(`screen.投屏`) }}</div>
+        <div class="status">{{ $t(`screen.切换视频源`) }}</div>
+      </div>
     </div>
+    <div class="bottom">
+      <div class="btn" :class="screenData.runStatus == 1 ? 'btn-active' : ''" @click="setScreenStatus('runStatus', 1)">
+        {{ $t(`screen.有线投屏`) }}
+      </div>
+      <div class="btn" :class="screenData.runStatus == 2 ? 'btn-active' : ''" @click="setScreenStatus('runStatus', 2)">
+        {{ $t(`screen.无线投屏`) }}
+      </div>
+      <div
+        class="btn"
+        :class="screenData.runStatus == 3 ? 'btn-active' : ''"
+        v-if="['ROOM EOS', 'ROOM GAIA'].includes(roomInfo.name)"
+        @click="setScreenStatus('runStatus', 3)">
+        Teams Room
+      </div>
+    </div>
+  </div>
 </template>
 
 <script setup>
-import useDeviceControl from '@/hooks/useDeviceControl';
-import { useStore } from '@/store';
-import { parseImgUrl } from "@/utils";
-import { computed, ref, watch } from 'vue';
-
+import useDeviceControl from "@/hooks/useDeviceControl"
+import { useStore } from "@/store"
+import { parseImgUrl } from "@/utils"
+import { computed, ref, watch } from "vue"
 const store = useStore()
+let lastScreenType = null
+let lastScreenTypeTimer = null
 
-
-const emit = defineEmits(['getStatus'])
+const emit = defineEmits(["getStatus"])
 const props = defineProps({
-    screenStatus: {
-        type: Object,
-        default: () => { }
-    },
-    equipList: {
-        type: Array,
-        default: () => {
-            return []
-        }
-    },
-    roomInfo: {
-        type: Object,
-        default: () => { }
-    },
+  screenStatus: {
+    type: Object,
+    default: () => {}
+  },
+  equipList: {
+    type: Array,
+    default: () => {
+      return []
+    }
+  },
+  roomInfo: {
+    type: Object,
+    default: () => {}
+  }
 })
 const allScreenStatus = computed(() => store.state.taiguv1.screenSwitchStatus)
 const screenData = ref({
-    runStatus: 2
+  runStatus: 2
 })
 watch(
-    () => props.screenStatus,
-    (newVal, oldVal) => {
-        if (!newVal) {
-            return
-        }
-        screenData.value = { ...newVal }
-    },
-    { deep: true } // 添加深度监听
-)
-watch(
-    // 
-    () => props.roomInfo,
-    { immediate: true } // 添加深度监听
+  () => props.screenStatus,
+  (newVal, oldVal) => {
+    if (!newVal) {
+      return
+    }
+    if (isNumber(lastScreenType) && newVal.runStatus == lastScreenType) {
+      lastScreenType = null
+      clearTimeout(lastScreenTypeTimer)
+      lastScreenTypeTimer = null
+    }
+    if (lastScreenType) {
+      screenData.value = { runStatus: lastScreenType }
+    } else {
+      screenData.value = { ...newVal }
+    }
+  },
+  { deep: true } // 添加深度监听
 )
+// watch(
+//   //
+//   () => props.roomInfo,
+//   { immediate: true } // 添加深度监听
+// )
 const deviceControl = useDeviceControl()
-
+const isNumber = value => {
+  return typeof value === "number" && !isNaN(value)
+}
 const setScreenStatus = (type, value) => {
-    if (value == screenData.value.runStatus) return;
-    if (type == 'isOpen') {
-        store.dispatch('taiguv1/setScreenStatus', {
-            id: 'all',
-            status: {
-                loading: true,
-                lastSwitchStatus: screenData.value.isOpen
-            }
-        })
-    }
-    screenData.value.runStatus = value
-    const equipListFirst = props.equipList[0]
-    equipListFirst.inCloudSet = value
+  if (value == screenData.value.runStatus) return
+  // if (type == "isOpen") {
+  //   store.dispatch("taiguv1/setScreenStatus", {
+  //     id: "all",
+  //     status: {
+  //       loading: true,
+  //       lastSwitchStatus: screenData.value.isOpen
+  //     }
+  //   })
+  // }
+  lastScreenType = value
+  clearTimeout(lastScreenTypeTimer)
+  lastScreenTypeTimer = null
+  lastScreenTypeTimer = setTimeout(() => {
+    lastScreenType = null
+    lastScreenTypeTimer = null
+  }, 1000 * 30)
+  screenData.value.runStatus = value
+  const equipListFirst = props.equipList[0]
+  equipListFirst.inCloudSet = value
 
-    const params = deviceControl.assemblyScreenCommand(screenData.value[type], type, props.equipList)
-    deviceControl.sendCommands(params)
+  const params = deviceControl.assemblyScreenCommand(screenData.value[type], type, props.equipList)
+  deviceControl.sendCommands(params)
 }
-
-
 </script>
 <style lang="scss" scoped>
 .screen-box {
-    box-sizing: border-box;
-    padding: 16px;
-    width: 100%;
-    height: 100%;
-    border-radius: 24px 24px 44px 24px;
-    background-color: rgba(255, 255, 255, 0.2);
-    -webkit-backdrop-filter: blur(40px);
-    backdrop-filter: blur(40px);
-    box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
+  box-sizing: border-box;
+  padding: 16px;
+  width: 100%;
+  height: 100%;
+  border-radius: 24px 24px 44px 24px;
+  background-color: rgba(255, 255, 255, 0.2);
+  -webkit-backdrop-filter: blur(40px);
+  backdrop-filter: blur(40px);
+  box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
+  display: flex;
+  flex-direction: column;
+  justify-content: space-between;
+  .top {
     display: flex;
-    flex-direction: column;
-    justify-content: space-between;
-    .top {
-        display: flex;
-        img {
-            width: 30px;
-            height: 30px;
-            margin-right: 8px;
-        }
-        .top-right {
-            .title {
-                //styleName: Chi/Body Large;
-                font-family: PingFang SC;
-                font-size: 16px;
-                font-weight: 300;
-                line-height: 22px;
-                letter-spacing: 0.02em;
-                color: rgba(255, 255, 255, 1);
-                margin-bottom: 2px;
-            }
-            .status {
-                //styleName: Chi/Body XS;
-                font-family: PingFang SC;
-                font-size: 11px;
-                font-weight: 400;
-                line-height: 15.4px;
-                letter-spacing: 0.02em;
-                color: rgba(255, 255, 255, 0.4);
-            }
-        }
+    img {
+      width: 30px;
+      height: 30px;
+      margin-right: 8px;
+    }
+    .top-right {
+      .title {
+        //styleName: Chi/Body Large;
+        font-family: PingFang SC;
+        font-size: 16px;
+        font-weight: 300;
+        line-height: 22px;
+        letter-spacing: 0.02em;
+        color: rgba(255, 255, 255, 1);
+        margin-bottom: 2px;
+      }
+      .status {
+        //styleName: Chi/Body XS;
+        font-family: PingFang SC;
+        font-size: 11px;
+        font-weight: 400;
+        line-height: 15.4px;
+        letter-spacing: 0.02em;
+        color: rgba(255, 255, 255, 0.4);
+      }
+    }
+  }
+  .bottom {
+    margin-top: 9px;
+    .btn {
+      box-sizing: border-box;
+      margin-bottom: 5px;
+      width: 128px;
+      border-radius: 60px;
+      height: 40px;
+      text-align: center;
+      font-family: PingFang SC;
+      font-size: 12px;
+      line-height: 40px;
+      font-weight: 400;
+      letter-spacing: 0.02em;
+      color: rgba(116, 128, 141, 1);
+      background: rgba(255, 255, 255, 0.4);
     }
-    .bottom {
-        margin-top: 9px;
-        .btn {
-            box-sizing: border-box;
-            margin-bottom: 5px;
-            width: 128px;
-            border-radius: 60px;
-            height: 40px;
-            text-align: center;
-            font-family: PingFang SC;
-            font-size: 12px;
-            line-height: 40px;
-            font-weight: 400;
-            letter-spacing: 0.02em;
-            color: rgba(116, 128, 141, 1);
-            background: rgba(255, 255, 255, 0.4);
-        }
-        .btn-active {
-            background: rgba(255, 255, 255, 0.8);
-            color: rgba(0, 20, 40, 1);
-            -webkit-backdrop-filter: blur(20px);
-            backdrop-filter: blur(20px);
-        }
+    .btn-active {
+      background: rgba(255, 255, 255, 0.8);
+      color: rgba(0, 20, 40, 1);
+      -webkit-backdrop-filter: blur(20px);
+      backdrop-filter: blur(20px);
     }
+  }
 }
 .active {
-    background: rgba(255, 255, 255, 0.8);
-    // -webkit-backdrop-filter: blur(40px);
-    // backdrop-filter: blur(40px);
-    box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
-    .top {
-        .top-right {
-            .title {
-                color: rgba(0, 20, 40, 1);
-            }
-            .status {
-                color: rgba(116, 128, 141, 1);
-            }
-        }
+  background: rgba(255, 255, 255, 0.8);
+  // -webkit-backdrop-filter: blur(40px);
+  // backdrop-filter: blur(40px);
+  box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
+  .top {
+    .top-right {
+      .title {
+        color: rgba(0, 20, 40, 1);
+      }
+      .status {
+        color: rgba(116, 128, 141, 1);
+      }
     }
+  }
 }
 </style>

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

@@ -2,10 +2,7 @@
   <div class="volumn-box" :class="audioData.isOpen ? 'active' : ''">
     <div class="top">
       <img :src="audioData.isOpen ? speakerIcon : speakerCloseIcon" alt="" />
-      <SwitchButton
-        :loading="allAudioStatus.all?.loading"
-        @change="setAudioStatus('isOpen')"
-        v-model="audioData.isOpen" />
+      <SwitchButton @change="setAudioStatus('isOpen')" v-model="audioData.isOpen" />
     </div>
     <div class="bottom">
       <div class="volumn-info">
@@ -21,7 +18,7 @@
             }}
           </div>
         </div>
-        <div class="temp" v-if="audioData.isOpen">{{ audioData.volumnSet || 0 }}</div>
+        <div class="temp" v-if="audioData.isOpen">{{ customRound(audioData.volumnSet) || 0 }}</div>
       </div>
 
       <div class="volumn-slider" v-if="audioData.isOpen">
@@ -46,6 +43,8 @@ import { useStore } from "@/store"
 import { customRound } from "@/utils"
 import { computed, ref, watch } from "vue"
 import eventBus from "@/utils/eventBus"
+const lastVolumnSet = ref(null)
+let volumnTimer = null
 const min = 0
 const max = 100
 const store = useStore()
@@ -93,13 +92,21 @@ const setAudioStatus = type => {
       }
     })
   } else {
-    store.dispatch("taiguv1/setAudioStatus", {
-      id: "lastStatus",
-      status: {
-        lastValue: audioData.value.volumnSet,
-        paramsVaue: customRound(audioData.value.volumnSet)
-      }
-    })
+    // store.dispatch("taiguv1/setAudioStatus", {
+    //   id: "lastStatus",
+    //   status: {
+    //     lastValue: audioData.value.volumnSet,
+    //     paramsVaue: customRound(audioData.value.volumnSet)
+    //   }
+    // })
+
+    lastVolumnSet.value = customRound(audioData.value.volumnSet)
+    clearTimeout(volumnTimer)
+    volumnTimer = null
+    volumnTimer = setTimeout(() => {
+      lastVolumnSet.value = null
+      volumnTimer = null
+    }, 1000 * 3)
   }
 
   sendEvent(true)
@@ -109,14 +116,22 @@ const setAudioStatus = type => {
     debouncedSendEvent(false)
   })
 }
+const isNumber = value => {
+  return typeof value === "number" && !isNaN(value)
+}
 const compareStatus = data => {
   const updateAudioData = () => {
     audioData.value = {
       ...data,
       isOpen: data.isOpen,
-      volumnSet: allAudioStatus.value?.lastStatus?.lastValue ?? data.volumnSet
+      volumnSet: lastVolumnSet.value ?? data.volumnSet
     }
   }
+  if (isNumber(lastVolumnSet.value) && data.volumnSet == lastVolumnSet.value) {
+    lastVolumnSet.value = null
+    clearTimeout(volumnTimer)
+    volumnTimer = null
+  }
   if (allAudioStatus.value.all) {
     const { lastSwitchStatus } = allAudioStatus.value.all
     if (lastSwitchStatus == data.isOpen) {
@@ -134,17 +149,19 @@ const compareStatus = data => {
       audioData.value = {
         ...data,
         isOpen: lastSwitchStatus,
-        volumnSet: allAudioStatus.value?.lastStatus?.lastValue ?? data.volumnSet
+        volumnSet: lastVolumnSet.value ?? data.volumnSet
       }
     }
   } else {
     updateAudioData()
   }
 }
+
 const sendEvent = close => {
   closeUpdate = close
   eventBus.emit("close_deviece_timer", { close })
 }
+
 const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)
 </script>
 <style lang="scss" scoped>

+ 56 - 66
src/views/envmonitor/taiguv1/index.vue

@@ -171,7 +171,7 @@
 </template>
 
 <script setup>
-import { onMounted, onUnmounted, ref } from "vue"
+import { onMounted, onUnmounted, ref, nextTick } from "vue"
 import { useI18n } from "vue-i18n"
 import { useRoute, useRouter } from "vue-router"
 import AirMore from "./components/Air/AirMore.vue"
@@ -257,6 +257,8 @@ const handleChildLampSwitch = (status, text) => {
   // lampStatusText.value = text
 }
 let deviceStatusPolling = null
+let spaceScenePolling = null
+let spaceInfoPolling = null
 const projectId = "Pj3301050005"
 const airIsOpen = ref(false)
 // 添加场景执行标志
@@ -314,7 +316,7 @@ onMounted(async () => {
 
 // 获取空间信息
 const getSpaceInfo = () => {
-  const polling = createPollingTask(() => {
+  spaceInfoPolling = createPollingTask(() => {
     HttpGetSpaceInfo({
       criteria: {
         spaceId: roomInfo.value.spaceId,
@@ -344,10 +346,7 @@ const getSpaceInfo = () => {
       }
     })
   }, 1000 * 60 * 5)
-  polling.start()
-  onUnmounted(() => {
-    polling.stop()
-  })
+  spaceInfoPolling.start()
 }
 // 手动处理格式化空间参数
 const handleEnvData = (type, num) => {
@@ -384,7 +383,7 @@ const showDefaultScene = () => {
 }
 // 获取空间场景
 const getSpaceScene = params => {
-  const polling = createPollingTask(() => {
+  spaceScenePolling = createPollingTask(() => {
     httpGetByMeetingId(params)
       .then(res => {
         if (res.result == "success") {
@@ -424,10 +423,7 @@ const getSpaceScene = params => {
         showDefaultScene()
       })
   }, 1000 * 30)
-  polling.start()
-  onUnmounted(() => {
-    polling.stop()
-  })
+  spaceScenePolling.start()
 }
 
 //初始化空间
@@ -524,71 +520,66 @@ const getDeviceStatus = () => {
   deviceStatusPolling.start()
 }
 
-// 在组件卸载时确保清理定时器
-onUnmounted(() => {
-  if (deviceStatusPolling) {
-    deviceStatusPolling.stop()
-  }
-})
-
 const updateAirStatus = data => {
   let { runStatus, gear, tempSet, maxTempSet, minTempSet, isAutoGear, equipList = [] } = data || {}
-  airStatus.value = {
-    runStatus: equipList.find(item => item.runStatus == 1) ? 1 : 0,
-    gear: gear || 0,
-    tempSet,
-    maxTempSet,
-    minTempSet,
-    isAutoGear: isAutoGear == 1,
-    lastSwitchStatus: airStatus.value.lastSwitchStatus,
-    switchLoading: airStatus.value.switchLoading
-  }
-  //   store.dispatch('taiguv1/setAirStatus', {
-  //     id: 'all',
-  //     status: {
-  //       lastSwitchStatus: runStatus == 1
-  //     }
-  //   })
-  // airIsOpen.value = isOpen
   airEquipList.value = equipList
+  nextTick(() => {
+    airStatus.value = {
+      runStatus: equipList.find(item => item.runStatus == 1) ? 1 : 0,
+      gear: gear || 0,
+      tempSet,
+      maxTempSet,
+      minTempSet,
+      isAutoGear: isAutoGear == 1,
+      lastSwitchStatus: airStatus.value.lastSwitchStatus,
+      switchLoading: airStatus.value.switchLoading
+    }
+  })
 }
 
 const updateLampStatus = data => {
+  lampEquipList.value = data
   let brightLamp = data?.find(item => item.brightValue != undefined && item.brightValue != 0)
   let arr = data?.filter(item => item.brightValue == 0)
-  lampStatus.value = {
-    brightValue: brightLamp?.brightValue,
-    colorTempValue: brightLamp?.colorTempValue,
-    lampStatusText: arr?.length == 0 ? "已开启" : arr?.length < data?.length ? "已部分开启" : "已关闭"
-  }
-  if (brightLamp) {
-    lampStatus.value.isOpen = true
-  } else {
-    lampStatus.value.isOpen = false
-  }
-  lampEquipList.value = data
+  nextTick(() => {
+    lampStatus.value = {
+      brightValue: brightLamp?.brightValue,
+      colorTempValue: brightLamp?.colorTempValue,
+      lampStatusText: arr?.length == 0 ? "已开启" : arr?.length < data?.length ? "已部分开启" : "已关闭"
+    }
+    if (brightLamp) {
+      lampStatus.value.isOpen = true
+    } else {
+      lampStatus.value.isOpen = false
+    }
+  })
 }
 const updateAudioStatus = data => {
   let { equipList = [] } = data || {}
   let obj = equipList[0] || {}
-  audioStatus.value = {
-    isOpen: obj.faultStatus == 1,
-    onlineStatus: obj.onlineStatus,
-    volumnSet: obj.runStatus,
-    lastSwitchStatus: audioStatus.value.lastSwitchStatus,
-    switchLoading: audioStatus.value.switchLoading
-  }
   audioEquipList.value = equipList
+  nextTick(() => {
+    audioStatus.value = {
+      isOpen: obj.faultStatus == 1,
+      onlineStatus: obj.onlineStatus,
+      volumnSet: obj.runStatus,
+      lastSwitchStatus: audioStatus.value.lastSwitchStatus,
+      switchLoading: audioStatus.value.switchLoading
+    }
+  })
 }
 const updateScreenStatus = data => {
   let { equipList = [] } = data || {}
   let obj = equipList[0] || {}
-  screenStatus.value = {
-    isOpen: obj.inCloudSet == 1,
-    runStatus: obj.runStatus || 2,
-    lastSwitchStatus: screenStatus.value.lastSwitchStatus,
-    screenStatus: screenStatus.value.switchLoading
-  }
+  nextTick(() => {
+    screenStatus.value = {
+      isOpen: obj.inCloudSet == 1,
+      runStatus: obj.runStatus || 2,
+      lastSwitchStatus: screenStatus.value.lastSwitchStatus,
+      screenStatus: screenStatus.value.switchLoading
+    }
+  })
+
   screenEquipList.value = equipList
 }
 
@@ -692,13 +683,6 @@ const endPressLogo = () => {
   }
 }
 
-// 在组件卸载时清理定时器
-onUnmounted(() => {
-  if (pressTimerLogo.value) {
-    clearTimeout(pressTimerLogo.value)
-  }
-})
-
 //TODO: 8*************长按刷新*************
 
 // 添加长按相关变量
@@ -725,6 +709,12 @@ onUnmounted(() => {
   if (pressTimer.value) {
     clearTimeout(pressTimer.value)
   }
+  if (pressTimerLogo.value) {
+    clearTimeout(pressTimerLogo.value)
+  }
+  spaceScenePolling && spaceScenePolling.stop()
+  spaceInfoPolling && spaceInfoPolling.stop()
+  deviceStatusPolling && deviceStatusPolling.stop()
 })
 </script>
 <style lang="scss">