From 6f80d139bacbb2f0ae46c3d2a39bb5f66319f6de Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 1 Sep 2025 10:27:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8A=95=E7=A5=A8UI=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend_nuxt/components/PostPoll.vue | 49 +++++++++++++++++++-------- 1 file changed, 34 insertions(+), 15 deletions(-) diff --git a/frontend_nuxt/components/PostPoll.vue b/frontend_nuxt/components/PostPoll.vue index 0dcec1463..fdfc7cc07 100644 --- a/frontend_nuxt/components/PostPoll.vue +++ b/frontend_nuxt/components/PostPoll.vue @@ -29,6 +29,15 @@
+
+
多选
+
单选
+ +
+
离结束还有
+
{{ countdown }}
+
+
@@ -71,12 +76,8 @@
-
- - 该投票为单选 -
- 加入投票 + 确认投票
@@ -102,10 +103,11 @@ > 结果 - -
-
离结束还有
-
{{ countdown }}
+
+ 投票已结束 +
+
+ 您已投票,等待结束查看结果
@@ -397,7 +399,8 @@ const submitMultiPoll = async () => { .multi-selection-container, .single-selection-container { - padding: 20px 15px 20px 5px; + margin-top: 30px; + margin-bottom: 10px; display: flex; flex-direction: row; justify-content: space-between; @@ -409,6 +412,22 @@ const submitMultiPoll = async () => { color: var(--text-color); } +.poll-title-section { + display: flex; + gap: 30px; + flex-direction: row; + margin-bottom: 20px; +} + +.poll-option-title { + font-size: 18px; + font-weight: bold; +} + +.poll-left-time { + font-size: 18px; +} + .info-icon { margin-right: 5px; }