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; }