From 8fa1e1d7aee33a1afb81d7ac8c359db8fc45e107 Mon Sep 17 00:00:00 2001 From: huangchenhao <123673748@qq.com> Date: Wed, 10 Dec 2025 10:27:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=B0=E9=9B=AA=E4=B8=93=E9=A2=98App?= =?UTF-8?q?=E7=AB=AF=20=E5=AE=8C=E6=88=90=E4=BA=8B=E4=BB=B6=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=BC=96=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/IceEvent/IceEventDetails.vue | 205 ++++++++++-------- 1 file changed, 117 insertions(+), 88 deletions(-) diff --git a/packages/mobile/src/views/IceEvent/IceEventDetails.vue b/packages/mobile/src/views/IceEvent/IceEventDetails.vue index d9209ca..bfc755f 100644 --- a/packages/mobile/src/views/IceEvent/IceEventDetails.vue +++ b/packages/mobile/src/views/IceEvent/IceEventDetails.vue @@ -8,24 +8,17 @@
- + - + - + @@ -33,101 +26,103 @@ - + - + - + - + - + - + - + - + - + - + - + - +
+ + + + + + + +
+

+ 确认完成事件? +

+ +
+ + 取消 + + + 确认 + +
+
+
- - + +const showFinishPopup = ref(false); +const onFinishPopupClose = () => { + showFinishPopup.value = false; +}; +const handleFinishOpen = () => { + showFinishPopup.value = true; +}; + +const finishConfirm = async () => { + try { + showToast({ + message: "完成事件相关逻辑", + type: "fail", + }); + } catch (error) { - - \ No newline at end of file + +:deep(.van-tabbar-item__text) { + width: 90%; + display: block; +} + +.button-box { + display: flex; + justify-content: center; + width: 100%; + gap: 20px; +} + \ No newline at end of file