fix: 重发验证码&图片路径
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<div class="mail-container">
|
||||
<div class="label">Your Email</div>
|
||||
<div class="input-group">
|
||||
<input type="email" v-model="formData.email" placeholder="Email" class="input-field" />
|
||||
<input type="email" v-model="formData.email" placeholder="Enter your email" class="input-field" />
|
||||
</div>
|
||||
<div class="btn" @click="handleNext">Next</div>
|
||||
</div>
|
||||
|
||||
@@ -48,7 +48,7 @@ const props = defineProps({
|
||||
|
||||
const agreePolicy = ref(false)
|
||||
// Emits
|
||||
const emit = defineEmits(['nextStep'])
|
||||
const emit = defineEmits(['nextStep','resend'])
|
||||
|
||||
// Reactive data
|
||||
const loading = ref(false)
|
||||
@@ -83,6 +83,7 @@ const handleResend = () => {
|
||||
if (countdown.value > 0) return
|
||||
countdown.value = 60
|
||||
handleSendVerifyCode()
|
||||
emit('resend')
|
||||
}
|
||||
|
||||
const handleConfirmCaptcha = () => {
|
||||
|
||||
Reference in New Issue
Block a user