From ee549c30f7603bb14a176fefdf8e62df8cfd91ac Mon Sep 17 00:00:00 2001 From: jiangpeng <1649773715@qq.com> Date: Fri, 12 Jun 2026 15:38:57 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E6=94=B9=E5=AF=86?= =?UTF-8?q?=E7=A0=81=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ResetPassword/index.vue | 41 ++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/src/views/ResetPassword/index.vue b/src/views/ResetPassword/index.vue index 3d0b4f6..04ff87e 100644 --- a/src/views/ResetPassword/index.vue +++ b/src/views/ResetPassword/index.vue @@ -45,22 +45,23 @@ maxlength="6" :rules="emailCodeRules" class="reset-input" - > - - + /> +
+ + {{ emailCodeCountdown > 0 ? `${emailCodeCountdown}秒后重发` : '发送验证码' }} + +
+
提交 @@ -258,6 +259,18 @@ onBeforeUnmount(() => { margin-bottom: 12px; } +.email-code-button { + padding: 0 16px; + margin-top: 12px; + text-align: right; + + .van-button { + height: 34px; + font-size: 14px; + background: #fff; + } +} + .button-container { margin-top: 24px; }