|
@@ -114,7 +114,7 @@ export default {
|
|
|
this.verificationCodeError = true
|
|
|
this.$message.error({
|
|
|
duration: 5000,
|
|
|
- message: 'False Code,please check again'
|
|
|
+ message: 'Verification Code Error'
|
|
|
})
|
|
|
} else if (
|
|
|
res.data.code === 700 &&
|
|
@@ -124,7 +124,7 @@ export default {
|
|
|
this.passwordConfirmError = true
|
|
|
this.$message.error({
|
|
|
duration: 5000,
|
|
|
- message: 'Password must between 6-24 characters'
|
|
|
+ message: 'Password must be 6-24 characters'
|
|
|
})
|
|
|
} else if (
|
|
|
res.data.code === 700 &&
|
|
@@ -134,7 +134,7 @@ export default {
|
|
|
this.passwordConfirmError = true
|
|
|
this.$message.error({
|
|
|
duration: 5000,
|
|
|
- message: 'Different Password'
|
|
|
+ message: "Confirm password doesn't match password"
|
|
|
})
|
|
|
} else if (
|
|
|
res.data.code === 700 &&
|
|
@@ -143,12 +143,12 @@ export default {
|
|
|
this.EmailCodeError = true
|
|
|
this.$message.error({
|
|
|
duration: 5000,
|
|
|
- message: 'Email has been created'
|
|
|
+ message: 'Account already exist, log in or change email?'
|
|
|
})
|
|
|
} else if (res.data.code === 200 && res.data.msg === '注册成功') {
|
|
|
this.$message({
|
|
|
duration: 5000,
|
|
|
- message: 'Create Success',
|
|
|
+ message: 'Create Successfully',
|
|
|
type: 'success'
|
|
|
})
|
|
|
this.$router.push('/login')
|
|
@@ -161,7 +161,7 @@ export default {
|
|
|
this.$message.error({
|
|
|
duration: 5000,
|
|
|
message:
|
|
|
- 'Please read and confirm POLICY OF PRIVACY and TERMS OF USE first'
|
|
|
+ 'Please read and confirm PRIVACY POLICY and TERMS OF USE first'
|
|
|
})
|
|
|
}
|
|
|
},
|
|
@@ -236,7 +236,7 @@ export default {
|
|
|
</div>
|
|
|
<div class="h-auto m-auto">
|
|
|
<div class="w-404px h-auto rounded-8px p-24px bg-[#fff] loginBox">
|
|
|
- <h1 class="text-24px font-bold my-24px">Create account</h1>
|
|
|
+ <h1 class="text-24px font-bold my-24px">Create Account</h1>
|
|
|
<el-form
|
|
|
:model="ruleForm"
|
|
|
ref="ruleForm"
|
|
@@ -292,7 +292,7 @@ export default {
|
|
|
<div class="flex items-center">
|
|
|
<el-input
|
|
|
v-model.trim="ruleForm.userName"
|
|
|
- placeholder="User name"
|
|
|
+ placeholder="User Name"
|
|
|
>
|
|
|
</el-input>
|
|
|
</div>
|
|
@@ -323,7 +323,7 @@ export default {
|
|
|
<div class="flex items-center">
|
|
|
<el-input
|
|
|
v-model.trim="ruleForm.passwordConfirm"
|
|
|
- placeholder="Password confirm"
|
|
|
+ placeholder="Confirm Password"
|
|
|
:type="passwordConfirmType ? '' : 'password'"
|
|
|
>
|
|
|
</el-input>
|
|
@@ -394,7 +394,7 @@ export default {
|
|
|
<span
|
|
|
class="ml-8px text-12px leading-14px"
|
|
|
:class="checkBox ? 'text-[#FF5054]' : ''"
|
|
|
- >Read and Agree to POLICY OF PRIVACY and TERMS OF USE</span
|
|
|
+ >Read and Agree to PRIVACY POLICY and TERMS OF USE</span
|
|
|
>
|
|
|
</div>
|
|
|
</el-form-item>
|