|
@@ -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;
|