AirMore.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. <template>
  2. <div class="more-box">
  3. <div class="air-more-top">
  4. <div class="left">
  5. <div class="air-box">
  6. <img alt="" :src="airSwitchStatus.switchStatus ? AirIconOpen : AirIconClose" />
  7. </div>
  8. <div class="air-name">{{ $t(`air.${airSwitchStatus.statusText}`) }}</div>
  9. </div>
  10. <div class="right">
  11. <div class="control" :ref="setRef" @click="handleSwitch('isOpen', true)">{{ $t(`common.全开`) }}</div>
  12. <div class="control" :ref="setRef" @click="handleSwitch('isOpen', false)">{{ $t(`common.全关`) }}</div>
  13. </div>
  14. </div>
  15. <div class="air-middle" v-if="airSwitchStatus.switchStatus">
  16. <div class="bright-slider">
  17. <AirSlider
  18. v-model="airData.tempSet"
  19. :min="airData.minTempSet"
  20. :max="airData.maxTempSet"
  21. isFollow
  22. showValue
  23. suffix="℃"
  24. @onStart="sendEvent(true)"
  25. @onEnd="setAirStatus('tempSet')"></AirSlider>
  26. </div>
  27. <div class="temp-slider">
  28. <div class="handle-box">
  29. <div
  30. class="handle-item air-down"
  31. :ref="setRef"
  32. data-type="minus"
  33. @click.prevent.stop="handle('minus', airData, 'all')">
  34. <div
  35. class="icon"
  36. :style="{
  37. background: `url(${buttonStates.minus ? MinusIconActive : MinusIcon}) no-repeat center`,
  38. backgroundSize: 'contain'
  39. }"></div>
  40. </div>
  41. <div
  42. class="handle-item air-up"
  43. :ref="setRef"
  44. data-type="plus"
  45. @click.prevent.stop="handle('plus', airData, 'all')">
  46. <img class="icon" :src="buttonStates.plus ? AddIconActive : AddIcon" />
  47. </div>
  48. <div class="handle-item air-auto" @click.prevent.stop="handle('auto', airData, 'all')">
  49. <img class="icon" :src="airData.isAutoGear ? AutoIconActive : AutoIcon" />
  50. </div>
  51. </div>
  52. <div class="fan-speed">
  53. <div class="volume-top">
  54. <!-- <span :class="airData.gear == 0 ? 'span-active' : ''">0</span> -->
  55. <span :class="airData.gear == 1 ? 'span-active' : ''">1</span>
  56. <span :class="airData.gear == 2 ? 'span-active' : ''">2</span>
  57. <span :class="airData.gear == 3 ? 'span-active' : ''">3</span>
  58. <span :class="airData.gear == 4 ? 'span-active' : ''">4</span>
  59. <span :class="airData.gear == 5 ? 'span-active' : ''">5</span>
  60. </div>
  61. <div class="text">{{ $t(`air.风量调节`) }}</div>
  62. </div>
  63. </div>
  64. </div>
  65. <div class="divider" v-if="airSwitchStatus.switchStatus">
  66. <img src="@/assets/svg/line.svg" alt="" />
  67. </div>
  68. <!-- 子设备列表 -->
  69. <div class="air-bottom">
  70. <div class="item-box" :class="item.isOpen ? 'item-active' : ''" v-for="item in airEquipList" :key="item.id">
  71. <div class="handle-top">
  72. <div class="switch-box">
  73. <div class="name">{{ item.localName }}</div>
  74. <div class="switch">
  75. <SwitchButton
  76. :loading="allAirStatus[item.id]?.loading"
  77. v-model="item.isOpen"
  78. @change="sigleAirChange('isOpen', item, 'single')" />
  79. </div>
  80. </div>
  81. <div v-if="item.isOpen" class="fan-speed air-card">
  82. <div class="handle-box">
  83. <div
  84. class="handle-item air-down"
  85. :ref="setRef"
  86. data-type="minus"
  87. @click.prevent.stop="handle('minus', item, 'single')">
  88. <img class="icon" :src="buttonStates[item.id]?.minus ? MinusIconActive : MinusIcon" />
  89. </div>
  90. <div
  91. class="handle-item air-up"
  92. :ref="setRef"
  93. data-type="plus"
  94. @click.prevent.stop="handle('plus', item, 'single')">
  95. <img class="icon" :src="buttonStates[item.id]?.plus ? AddIconActive : AddIcon" />
  96. </div>
  97. <div class="handle-item air-auto" @click.prevent.stop="handle('auto', item, 'single')">
  98. <img class="icon" :src="item.isAutoGear ? AutoIconActive : AutoIcon" />
  99. </div>
  100. </div>
  101. <div class="fans-view">
  102. <div class="volume-top">
  103. <!-- <span :class="item.gear == 0 ? 'span-active' : ''">0</span> -->
  104. <span :class="item.gear == 1 ? 'span-active' : ''">1</span>
  105. <span :class="item.gear == 2 ? 'span-active' : ''">2</span>
  106. <span :class="item.gear == 3 ? 'span-active' : ''">3</span>
  107. <span :class="item.gear == 4 ? 'span-active' : ''">4</span>
  108. <span :class="item.gear == 5 ? 'span-active' : ''">5</span>
  109. </div>
  110. <div class="text">{{ $t(`air.风量调节`) }}</div>
  111. </div>
  112. </div>
  113. </div>
  114. <div v-if="item.isOpen" class="handle-bottom">
  115. <AirSlider
  116. isFollow
  117. showValue
  118. suffix="℃"
  119. v-model="item.tempSet"
  120. :min="airData.minTempSet"
  121. :max="airData.maxTempSet"
  122. @onStart="sendEvent(true)"
  123. @onEnd="sigleAirChange('tempSet', item, 'single')"></AirSlider>
  124. </div>
  125. </div>
  126. </div>
  127. </div>
  128. </template>
  129. <script setup>
  130. import AddIcon from "@/assets/taiguv1/svg/add_icon.svg"
  131. import AddIconActive from "@/assets/taiguv1/svg/add_icon_active.svg"
  132. import AirIconClose from "@/assets/taiguv1/svg/air_icon_close.svg"
  133. import AirIconOpen from "@/assets/taiguv1/svg/air_icon_open.svg"
  134. import AutoIcon from "@/assets/taiguv1/svg/auto_icon.svg"
  135. import AutoIconActive from "@/assets/taiguv1/svg/auto_icon_active.svg"
  136. import MinusIcon from "@/assets/taiguv1/svg/minus_icon.svg"
  137. import MinusIconActive from "@/assets/taiguv1/svg/minus_icon_active.svg"
  138. import AirSlider from "@/components/slider/air-slider.vue"
  139. import SwitchButton from "@/components/switch-button/SwitchButton.vue"
  140. import useDeviceControl from "@/hooks/useDeviceControl"
  141. import { useStore } from "@/store"
  142. import eventBus from "@/utils/eventBus"
  143. let closeUpdate = false
  144. import { computed, nextTick, onMounted, onUnmounted, ref, watch } from "vue"
  145. const emit = defineEmits(["getStatus"])
  146. const controlBtn = ref([])
  147. const store = useStore()
  148. const setRef = el => {
  149. if (el) {
  150. if (!controlBtn.value.includes(el)) {
  151. controlBtn.value.push(el)
  152. }
  153. }
  154. }
  155. const buttonStates = ref({
  156. minus: false,
  157. plus: false
  158. })
  159. const initItemButtonStates = itemId => {
  160. if (!buttonStates.value[itemId]) {
  161. buttonStates.value[itemId] = {
  162. minus: false,
  163. plus: false,
  164. auto: false
  165. }
  166. }
  167. }
  168. const deviceControl = useDeviceControl()
  169. // 接收父组件传递的初始状态
  170. const props = defineProps({
  171. airList: {
  172. type: Array,
  173. default: () => []
  174. },
  175. status: {
  176. type: Object,
  177. default: function () {
  178. return {
  179. isOpen: false,
  180. gear: 1,
  181. minTempSet: 16,
  182. maxTempSet: 32,
  183. tempSet: 24,
  184. isAutoGear: false,
  185. switchLoading: false
  186. }
  187. }
  188. }
  189. })
  190. const airEquipList = ref(props.airList || [])
  191. const airData = ref(props.status)
  192. const airSwitchStatus = computed(() => {
  193. let statusText = ""
  194. let switchStatus = false
  195. let arr = props.airList.filter(item => item.runStatus == 1)
  196. if (arr.length == 0) {
  197. statusText = "已关闭"
  198. switchStatus = false
  199. } else {
  200. statusText = arr.length > 0 && arr.length < props.airList.length ? "部分开启" : "已开启"
  201. switchStatus = true
  202. }
  203. return {
  204. statusText,
  205. switchStatus
  206. }
  207. })
  208. const allAirStatus = computed(() => store.state.taiguv1.airSwtichStatus)
  209. watch(
  210. () => props.status,
  211. (newVal, oldVal) => {
  212. if (!newVal || closeUpdate) {
  213. return
  214. }
  215. let { minTempSet, maxTempSet } = airData.value
  216. airData.value = { ...newVal, minTempSet, maxTempSet }
  217. },
  218. { deep: true } // 添加深度监听
  219. )
  220. watch(
  221. () => props.airList,
  222. (newVal, oldVal) => {
  223. if (!newVal || closeUpdate) {
  224. return
  225. }
  226. compareStatus(newVal)
  227. // 为所有item初始化按钮状态
  228. newVal.forEach(item => {
  229. initItemButtonStates(item.id)
  230. })
  231. },
  232. { deep: true }
  233. )
  234. // 对比和store中开关状态
  235. const compareStatus = data => {
  236. airEquipList.value = data.map(item => {
  237. const currentStatus = allAirStatus.value[item.id]
  238. // 基础状态对象
  239. const baseStatus = {
  240. ...item,
  241. isOpen: item.runStatus == 1
  242. }
  243. if (!currentStatus) {
  244. return baseStatus
  245. }
  246. // 如果最后切换状态与当前运行状态相同,重置状态
  247. if (currentStatus.lastSwitchStatus == item.runStatus) {
  248. store.dispatch("taiguv1/setAirStatus", {
  249. id: item.id,
  250. status: {
  251. loading: false,
  252. lastSwitchStatus: null
  253. }
  254. })
  255. return baseStatus
  256. }
  257. // 如果有待处理的切换状态,使用该状态
  258. return {
  259. ...item,
  260. isOpen: currentStatus.lastSwitchStatus ?? item.runStatus == 1
  261. }
  262. })
  263. }
  264. // 整体开关
  265. const handleSwitch = (type, value) => {
  266. airData.value.isOpen = value
  267. setAirStatus(type)
  268. }
  269. // 单个空调开关
  270. const sigleAirChange = (type, source, all) => {
  271. if (type == "isOpen") {
  272. store.dispatch("taiguv1/setAirStatus", {
  273. id: source.id,
  274. status: {
  275. loading: true,
  276. lastSwitchStatus: source.isOpen
  277. }
  278. })
  279. }
  280. if (all == "single") {
  281. const params = deviceControl.assemblyAirCommand(source[type], type, source)
  282. deviceControl.sendCommands(params, () => {
  283. debouncedSendEvent(false)
  284. })
  285. }
  286. }
  287. const setAirStatus = type => {
  288. if (type == "isOpen") {
  289. store.dispatch("taiguv1/setAirStatus", {
  290. id: "all",
  291. status: {
  292. loading: true,
  293. lastSwitchStatus: airData.value.isOpen
  294. }
  295. })
  296. airEquipList.value.forEach(item => {
  297. item.isOpen = airData.value.isOpen
  298. sigleAirChange(type, item, "all")
  299. })
  300. }
  301. const params = deviceControl.assemblyAirCommand(airData.value[type], type, airEquipList.value)
  302. deviceControl.sendCommands(params, () => {
  303. debouncedSendEvent(false)
  304. })
  305. }
  306. const debouncedSetAirStatus = deviceControl.debounce(setAirStatus, 1500)
  307. const debouncedSigleAirChange = deviceControl.debounce(sigleAirChange, 1500)
  308. const handle = (type, data, all) => {
  309. // 确保该item的按钮状态已初始化
  310. initItemButtonStates(data.id)
  311. // 设置当前item的对应按钮状态为激活
  312. buttonStates.value[data.id][type] = true
  313. // 200ms后恢复非激活状态
  314. setTimeout(() => {
  315. buttonStates.value[data.id][type] = false
  316. }, 200)
  317. if (!data.gear) data.gear = 0
  318. if (type === "minus") {
  319. // data.gear -= 1
  320. // if (data.gear < 0) {
  321. // data.gear = 0
  322. // }
  323. data.gear = Math.max(data.gear - 1, 1) // 确保 gear 不小于 1
  324. data.isAutoGear = false
  325. } else if (type === "plus") {
  326. data.gear += 1
  327. if (data.gear > 5) {
  328. data.gear = 5
  329. }
  330. data.isAutoGear = false
  331. } else if (type === "auto") {
  332. data.isAutoGear = true
  333. }
  334. sendEvent(true)
  335. if (all == "all" && type == "auto") {
  336. debouncedSetAirStatus("auto", all)
  337. } else if (all == "all" && type !== "auto") {
  338. debouncedSetAirStatus("gear", all)
  339. } else if (all == "single" && type !== "auto") {
  340. debouncedSigleAirChange("gear", data, all)
  341. } else if (all == "single" && type == "auto") {
  342. debouncedSigleAirChange("auto", data, all)
  343. }
  344. }
  345. const sendEvent = close => {
  346. closeUpdate = close
  347. eventBus.emit("close_deviece_timer", { close })
  348. }
  349. const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)
  350. onMounted(() => {
  351. nextTick(() => {
  352. controlBtn.value.forEach(button => {
  353. button.addEventListener("touchstart", handleTouchStart)
  354. button.addEventListener("click", handleTouchStart)
  355. })
  356. })
  357. })
  358. // 添加 touchstart 处理函数
  359. const handleTouchStart = event => {
  360. console.log("debugger111")
  361. const button = event.currentTarget
  362. const type = button.getAttribute("data-type") // 获取按钮类型
  363. button.classList.add("active")
  364. if (type) {
  365. buttonStates.value[type] = true
  366. }
  367. setTimeout(() => {
  368. button.classList.remove("active")
  369. if (type) {
  370. console.log("debugger")
  371. buttonStates.value[type] = false
  372. }
  373. }, 200)
  374. }
  375. // 添加 onUnmounted 钩子
  376. onUnmounted(() => {
  377. controlBtn.value.forEach(button => {
  378. button.removeEventListener("touchstart", handleTouchStart)
  379. button.removeEventListener("click", handleTouchStart)
  380. })
  381. })
  382. </script>
  383. <style lang="scss" scoped>
  384. .more-box {
  385. .air-more-top {
  386. display: flex;
  387. align-items: center;
  388. margin-bottom: 36px;
  389. .left {
  390. margin-right: 36px;
  391. .air-box {
  392. width: 110px;
  393. height: 110px;
  394. background: rgba(255, 255, 255, 0.4);
  395. border-radius: 50%;
  396. text-align: center;
  397. margin-right: 27px;
  398. display: flex;
  399. justify-self: center;
  400. align-items: center;
  401. img {
  402. width: 30px;
  403. height: 30px;
  404. margin: 0 auto;
  405. }
  406. }
  407. .air-name {
  408. //styleName: Chi/Body Large;
  409. margin-top: 12px;
  410. font-family: PingFang SC;
  411. width: 110px;
  412. font-size: 16px;
  413. font-weight: 300;
  414. line-height: 22px;
  415. letter-spacing: 0.02em;
  416. text-align: center;
  417. color: rgba(0, 20, 40, 1);
  418. }
  419. }
  420. .right {
  421. height: 92px;
  422. display: flex;
  423. flex-direction: column;
  424. justify-content: space-between;
  425. .control {
  426. width: 100px;
  427. height: 40px;
  428. line-height: 40px;
  429. border-radius: 50px;
  430. border-radius: 50px;
  431. background: #e1e1df;
  432. box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  433. color: #001428;
  434. //styleName: Chi/Body Small;
  435. font-family: PingFang SC;
  436. font-size: 12px;
  437. font-weight: 400;
  438. letter-spacing: 0.04em;
  439. text-align: center;
  440. }
  441. .control.active {
  442. background: rgba(255, 255, 255, 1);
  443. box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
  444. }
  445. }
  446. }
  447. .air-middle {
  448. // height: 100px;
  449. // background: #fff;
  450. .bright-slider {
  451. width: 100%;
  452. height: 62px;
  453. background: rgba(255, 255, 255, 0.6);
  454. margin-bottom: 12px;
  455. border-radius: 12px;
  456. }
  457. .temp-slider {
  458. display: flex;
  459. width: 296px;
  460. height: 65px;
  461. padding: 0px 24px;
  462. justify-content: space-between;
  463. align-items: center;
  464. flex-shrink: 0;
  465. border-radius: 24px 24px 60px 24px;
  466. background: rgba(255, 255, 255, 0.6);
  467. .handle-box {
  468. display: flex;
  469. gap: 6px;
  470. .handle-item {
  471. display: flex;
  472. align-items: center;
  473. width: 40px;
  474. height: 40px;
  475. text-align: center;
  476. .icon {
  477. margin-top: 8px;
  478. width: 28.3px;
  479. height: 28.3px;
  480. margin: 0 auto;
  481. }
  482. }
  483. }
  484. .fan-speed {
  485. .volume-top {
  486. padding-bottom: 2px;
  487. height: 3.33vh;
  488. line-height: 1;
  489. span {
  490. //styleName: En/Body Small;
  491. display: inline-block;
  492. margin-right: 5px;
  493. font-family: Jost;
  494. font-size: 12px;
  495. font-weight: 400;
  496. line-height: 17px;
  497. color: rgba(116, 128, 141, 1);
  498. }
  499. .span-active {
  500. color: rgba(0, 20, 40, 1);
  501. font-size: 16px;
  502. line-height: 22px;
  503. }
  504. }
  505. .text {
  506. //styleName: Chi/Body XS;
  507. font-family: PingFang SC;
  508. font-size: 11px;
  509. font-weight: 400;
  510. line-height: 15px;
  511. letter-spacing: 0.02em;
  512. color: rgba(0, 20, 40, 1);
  513. }
  514. }
  515. }
  516. }
  517. .divider {
  518. height: 24px;
  519. display: flex;
  520. align-items: center;
  521. }
  522. .air-bottom {
  523. // margin-top: 36px;
  524. .item-box {
  525. display: flex;
  526. width: 300px;
  527. padding: 20px 24px;
  528. flex-direction: column;
  529. justify-content: center;
  530. align-items: center;
  531. gap: 12px;
  532. margin-bottom: 12px;
  533. border-radius: 24px 24px 60px 24px;
  534. background: rgba(255, 255, 255, 0.2);
  535. box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.05);
  536. .handle-top {
  537. width: 100%;
  538. .switch-box {
  539. width: 100%;
  540. display: flex;
  541. height: 28px;
  542. justify-content: space-between;
  543. .name {
  544. color: var(--Blue, #001428);
  545. font-family: "PingFang SC";
  546. font-size: 14px;
  547. font-style: normal;
  548. font-weight: 400;
  549. line-height: normal;
  550. letter-spacing: 0.36px;
  551. }
  552. .switch {
  553. width: 50px;
  554. }
  555. }
  556. }
  557. .handle-bottom {
  558. margin-top: 12px;
  559. display: flex;
  560. width: 243px;
  561. height: 48px;
  562. padding: 2px;
  563. align-items: center;
  564. gap: 10px;
  565. border-radius: 14px;
  566. background: var(--White-White-60, rgba(255, 255, 255, 0.6));
  567. }
  568. }
  569. .handle-box {
  570. display: flex;
  571. gap: 6px;
  572. .handle-item {
  573. width: 40px;
  574. height: 40px;
  575. text-align: center;
  576. .icon {
  577. margin-top: 8px;
  578. width: 28.3px;
  579. height: 28.3px;
  580. }
  581. }
  582. }
  583. .fan-speed {
  584. margin-top: 12px;
  585. &.air-card {
  586. display: flex;
  587. justify-content: space-between;
  588. }
  589. .volume-top {
  590. padding-bottom: 2px;
  591. height: 3.33vh;
  592. line-height: 1;
  593. span {
  594. //styleName: En/Body Small;
  595. display: inline-block;
  596. margin-right: 5px;
  597. font-family: Jost;
  598. font-size: 12px;
  599. font-weight: 400;
  600. line-height: 17px;
  601. color: rgba(116, 128, 141, 1);
  602. }
  603. .span-active {
  604. color: rgba(0, 20, 40, 1);
  605. font-size: 16px;
  606. line-height: 22px;
  607. }
  608. }
  609. .text {
  610. //styleName: Chi/Body XS;
  611. font-family: PingFang SC;
  612. font-size: 11px;
  613. font-weight: 400;
  614. line-height: 15px;
  615. letter-spacing: 0.02em;
  616. color: rgba(0, 20, 40, 1);
  617. }
  618. }
  619. .item-active {
  620. background: rgba(255, 255, 255, 0.6);
  621. }
  622. }
  623. .switch-btn {
  624. margin-top: 0;
  625. width: 50px !important;
  626. height: 28px !important;
  627. border: none;
  628. }
  629. }
  630. </style>
  631. <style lang="scss">
  632. // .more-box {
  633. // .van-loading__spinner {
  634. // color: $elActiveColor !important;
  635. // }
  636. // .van-switch__loading {
  637. // top: 0;
  638. // left: 0;
  639. // width: 100%;
  640. // height: 100%;
  641. // line-height: 1;
  642. // }
  643. // .van-switch--disabled {
  644. // opacity: 0.5;
  645. // }
  646. // }
  647. </style>