From f8f638cbee9e798d08b54153ac3a449e24c0c682 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Thu, 9 Mar 2023 01:58:42 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20PageFront=EC=9D=98=20=EB=AA=A8=EB=B0=94?= =?UTF-8?q?=EC=9D=BC=20=EB=AA=A8=EB=93=9C=20=EC=88=9C=EC=84=9C=EB=A5=BC=20?= =?UTF-8?q?=EA=B8=B0=EC=A1=B4=20=EA=B5=AC=EC=84=B1=EA=B3=BC=20=EB=8F=99?= =?UTF-8?q?=EC=9D=BC=ED=95=98=EA=B2=8C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageFront.vue | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/hwe/ts/PageFront.vue b/hwe/ts/PageFront.vue index 8e4cbb5c..690ea564 100644 --- a/hwe/ts/PageFront.vue +++ b/hwe/ts/PageFront.vue @@ -243,7 +243,7 @@ const lastVoteState = (() => { const value = parseInt(localStorage.getItem(key) ?? "0"); const obj = ref(value); watch(obj, (newValue, oldValue) => { - if(newValue == oldValue){ + if (newValue == oldValue) { return; } localStorage.setItem(key, newValue.toString()); @@ -420,14 +420,16 @@ watch(refreshCounter, async () => { const lastVoteID = response.global.lastVoteID; if (lastVoteID > lastVoteState.value) { lastVoteState.value = lastVoteID; - toasts.warning({ - title: "설문조사 안내", - body: `새로운 설문조사가 있습니다.`, - }, { - delay: 1000 * 60, - }); + toasts.warning( + { + title: "설문조사 안내", + body: `새로운 설문조사가 있습니다.`, + }, + { + delay: 1000 * 60, + } + ); } - } catch (e) { generalInfoLock = false; console.error(e); @@ -536,6 +538,26 @@ watch(refreshCounter, async () => { grid-template-columns: 1fr; } + .reservedCommandZone{ + grid-row: 1; + } + + .generalCommandToolbar { + grid-row: 2; + } + + .nationInfo { + grid-row: 3; + } + + .generalInfo { + grid-row: 4; + } + + .cityInfo{ + grid-row: 5; + } + #actionMiniPlate { display: none; }