魔墙:打开对话框时初始化变量,多选对齐完清空多选
This commit is contained in:
parent
549b06f756
commit
9e7acc2482
|
@ -1743,6 +1743,9 @@ export default defineComponent({
|
||||||
offsetWidth.value = wall_dom.offsetWidth;
|
offsetWidth.value = wall_dom.offsetWidth;
|
||||||
getpx();
|
getpx();
|
||||||
}
|
}
|
||||||
|
test_monitor_list.value.forEach((element) => {
|
||||||
|
element.isHide = false;
|
||||||
|
});
|
||||||
if (response && settings) {
|
if (response && settings) {
|
||||||
const a = response?.config.windows;
|
const a = response?.config.windows;
|
||||||
output_length.value =
|
output_length.value =
|
||||||
|
@ -1771,9 +1774,7 @@ export default defineComponent({
|
||||||
multiple.value = false;
|
multiple.value = false;
|
||||||
last_wall.value = [];
|
last_wall.value = [];
|
||||||
sort_index.value = [];
|
sort_index.value = [];
|
||||||
test_monitor_list.value.forEach((element) => {
|
|
||||||
element.isHide = false;
|
|
||||||
});
|
|
||||||
$store.commit("setShowMonitorList", []);
|
$store.commit("setShowMonitorList", []);
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
} else if (a && wall_dom) {
|
} else if (a && wall_dom) {
|
||||||
|
@ -2213,7 +2214,7 @@ export default defineComponent({
|
||||||
tep_item.currenty = item.currenty;
|
tep_item.currenty = item.currenty;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
multiple_select.value=[]
|
||||||
realtime_upload();
|
realtime_upload();
|
||||||
},
|
},
|
||||||
alignBottom() {
|
alignBottom() {
|
||||||
|
@ -2224,6 +2225,7 @@ export default defineComponent({
|
||||||
tep_item.currenty = item.currenty + item.h - tep_item.h;
|
tep_item.currenty = item.currenty + item.h - tep_item.h;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
multiple_select.value=[]
|
||||||
realtime_upload();
|
realtime_upload();
|
||||||
},
|
},
|
||||||
alignRight() {
|
alignRight() {
|
||||||
|
@ -2234,7 +2236,7 @@ export default defineComponent({
|
||||||
tep_item.currentx = item.currentx + item.w - tep_item.w;
|
tep_item.currentx = item.currentx + item.w - tep_item.w;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
multiple_select.value=[]
|
||||||
realtime_upload();
|
realtime_upload();
|
||||||
},
|
},
|
||||||
alignLeft() {
|
alignLeft() {
|
||||||
|
@ -2245,6 +2247,7 @@ export default defineComponent({
|
||||||
tep_item.currentx = item.currentx;
|
tep_item.currentx = item.currentx;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
multiple_select.value=[]
|
||||||
realtime_upload();
|
realtime_upload();
|
||||||
},
|
},
|
||||||
testLog(a: any) {
|
testLog(a: any) {
|
||||||
|
|
Loading…
Reference in New Issue