From d167db672a91c2b8261603e4229886a0ef79b8af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Sat, 20 Sep 2025 09:48:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=91=E6=8D=A2token=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E5=90=8E=E7=9A=84=E5=BC=B9=E5=87=BA=E6=A1=86=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/homePage.vue | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/src/views/homePage.vue b/src/views/homePage.vue index eafb228..a4860b1 100644 --- a/src/views/homePage.vue +++ b/src/views/homePage.vue @@ -1148,9 +1148,9 @@ const goChange = async () => { confirmDialogVisible.value = false; dialogVisible.value = false; changeSuccessDialogVisible.value = true; - setTimeout(() => { - changeSuccessDialogVisible.value = false; - }, 2000); + // setTimeout(() => { + // changeSuccessDialogVisible.value = false; + // }, 2000); // 刷新次数 await chatStore.getUserCount(); @@ -1685,7 +1685,7 @@ onUnmounted(() => { v-model="confirmDialogVisible" :width="isMobile ? '60%' : '30%'" :show-close="false" - :align-center="isMobile" + align-center="true" >
兑换
@@ -1716,6 +1716,9 @@ onUnmounted(() => {
尊敬的用户,恭喜您成功兑换:{{ activeLevel.calculatedPosition }} Token
+
+ +
@@ -2878,4 +2881,27 @@ body { .changeSuccessDialog { background: linear-gradient(180deg, #80D3F8, #8080FF); } + +.changeSuccessDialogFooter { + display: flex; + justify-content: center; + margin-top: 20px; +} + +.confirmButton { + background: #8A52DF; + color: white; + border: none; + border-radius: 5px; + padding: 8px 30px; + font-size: 16px; + cursor: pointer; + transition: all 0.3s ease; +} + +.confirmButton:hover { + background: #3a75e6; + transform: translateY(-2px); + box-shadow: 0 2px 8px rgba(78, 134, 254, 0.3); +}