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