|
@@ -30,7 +30,9 @@
|
|
|
<NoticeDialog
|
|
|
:title="$t('注册邮件已发送')"
|
|
|
:btnText="$t('我知道了')"
|
|
|
- :text="noticeText"
|
|
|
+ type="register"
|
|
|
+ :email="form.email"
|
|
|
+ :text="$t(`我们向 ${this.form.email}</span> 发送了一封注册邮件,请您登录邮箱点击链接完成注册。`)"
|
|
|
v-model="isSendSucceed"
|
|
|
/>
|
|
|
</view>
|
|
@@ -59,9 +61,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
- noticeText({ form }) {
|
|
|
- return `我们向 <span style="color: #0A59F7;">${form.email}</span> 发送了一封注册邮件,请您登录邮箱点击链接完成注册。`
|
|
|
- },
|
|
|
+
|
|
|
isSubmt({ form }) {
|
|
|
return form.email && form.passwd && form.second_passwd
|
|
|
}
|
|
@@ -97,13 +97,14 @@ export default {
|
|
|
}, res => {
|
|
|
const { msg: title } = res.body
|
|
|
if (res.succeed) {
|
|
|
- uni.showToast({ title, icon: 'none' })
|
|
|
+ uni.showToast({ title:this.$t('注册邮件发送成功'), icon: 'none' })
|
|
|
this.isSendSucceed = true
|
|
|
} else {
|
|
|
uni.showToast({ title, icon: 'none' })
|
|
|
}
|
|
|
})
|
|
|
- }
|
|
|
+ },
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
</script>
|