From cb7037dcee11cfdd957caa1b625c74ee682a530c Mon Sep 17 00:00:00 2001 From: fan Date: Mon, 27 May 2024 22:25:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=94=E9=94=81=E6=98=A0=E5=B0=84=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E6=9A=82=E6=8F=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../draw-app/dialogs/LianSuoBianHao.vue | 66 ++++++++++++++++++- 1 file changed, 64 insertions(+), 2 deletions(-) diff --git a/src/components/draw-app/dialogs/LianSuoBianHao.vue b/src/components/draw-app/dialogs/LianSuoBianHao.vue index 8c86116..16b71be 100644 --- a/src/components/draw-app/dialogs/LianSuoBianHao.vue +++ b/src/components/draw-app/dialogs/LianSuoBianHao.vue @@ -8,7 +8,7 @@ :width="600" :height="500" > - + @@ -161,6 +164,48 @@ + + +
+ +
+
+ + +
+ +
+
+ + +
+ +
+
@@ -202,7 +247,14 @@ const garageDoorOptions = ref<{ id: number; name: string; index: number }[]>( const carWashingOptions = ref<{ id: number; name: string; index: number }[]>( [] ); -const tab = ref('station'); +const esbButtonOptions = ref<{ id: number; name: string; index: number }[]>([]); +const holdButtonOptions = ref<{ id: number; name: string; index: number }[]>( + [] +); +const unattengedButtonOptions = ref< + { id: number; name: string; index: number }[] +>([]); +const tab = ref(''); const splitterModel = ref(20); const showLianSuoBianHao = ref(true); @@ -239,6 +291,16 @@ onMounted(() => { lianSuoData.carWashing.forEach((t) => { lianSuoMapData.set(t.id, t.index); }); + stationUpdateData(); + turnoutUpdateData(); + screenDoorUpdateData(); + signalUpdateData(); + sectionUpdateData(); + floodGateUpdateData(); + spksSwitchUpdateData(); + garageDoorUpdateData(); + carWashingUpdateData(); + tab.value = 'station'; }); function stationUpdateData() {