From 7213e6bddb77897d24683b977b0a2e2d35d60816 Mon Sep 17 00:00:00 2001 From: miao <2514145421@qq.com> Date: Wed, 8 Mar 2023 17:28:08 +0800 Subject: [PATCH] =?UTF-8?q?=E9=AD=94=E5=A2=99=EF=BC=9A=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=A7=92=E5=BA=A6=E8=B6=85=E5=87=BA=E9=97=AE=E9=A2=98=EF=BC=8C?= =?UTF-8?q?=E4=BB=A5=E5=8F=8A=E6=98=BE=E7=A4=BA=E5=99=A8=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=85=A8=E9=83=A8=E8=AE=BE=E7=BD=AE=E4=B8=BA=E4=B8=80=E6=A0=B7?= =?UTF-8?q?=E7=9A=84=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ControlPanelDialog.vue | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/src/components/ControlPanelDialog.vue b/src/components/ControlPanelDialog.vue index 73f8ce6..a67b610 100644 --- a/src/components/ControlPanelDialog.vue +++ b/src/components/ControlPanelDialog.vue @@ -122,6 +122,7 @@ v-if="current_index > -1" type="number" min="0" + oninput="if(value<0)value=0;if(value>360)value=parseInt(value/10);" v-model="test_monitor_wall[current_index].angle" @keydown="testLog($event)" hint="" @@ -877,14 +878,14 @@ export default defineComponent({ new test_monitor(1, "02", aw, ah, ar), new test_monitor(2, "03", aw, ah, ar), new test_monitor(3, "04", aw, ah, ar), - new test_monitor(4, "05", bw, bh, br), - new test_monitor(5, "06", bw, bh, br), - new test_monitor(6, "07", bw, bh, br), - new test_monitor(7, "08", bw, bh, br), - new test_monitor(8, "09", cw, ch, cr), - new test_monitor(9, "10", cw, ch, cr), - new test_monitor(10, "11", cw, ch, cr), - new test_monitor(11, "12", cw, ch, cr), + new test_monitor(4, "05", aw, ah, ar), + new test_monitor(5, "06", aw, ah, ar), + new test_monitor(6, "07", aw, ah, ar), + new test_monitor(7, "08", aw, ah, ar), + new test_monitor(8, "09", aw, ah, ar), + new test_monitor(9, "10", aw, ah, ar), + new test_monitor(10, "11", aw, ah, ar), + new test_monitor(11, "12", aw, ah, ar), ]; }; interface show__Rect { @@ -1459,6 +1460,9 @@ export default defineComponent({ } }); } + test_monitor_list.value.forEach((ele) => { + ele.isHide = false; + }); const wall_dom = wall.value; if (a && wall_dom) { test_monitor_wall.value = []; @@ -1638,6 +1642,11 @@ export default defineComponent({ realtime_upload(); }; let list_magic: any = []; + const detect=(list:any)=>{ + list.forEach((ele:any)=>{ + + }) + } EventBus.getInstance().on( EventNamesDefine.NotifyMessage, (notify: NotifyMessage) => {