|
@@ -4,6 +4,8 @@ import {ElMessageBox,ElMessage} from 'element-plus'
|
|
|
import { useRouter } from 'vue-router';
|
|
|
import {CaretBottom} from '@element-plus/icons-vue'
|
|
|
import {loginApi,registerApi,emailCodeSend} from '@/api/auth.js'
|
|
|
+import { passwordDigitValidator } from './utils/validators';
|
|
|
+// passwordDigitValidator-密码6位
|
|
|
|
|
|
import md5 from 'md5';
|
|
|
|
|
@@ -45,7 +47,10 @@ import md5 from 'md5';
|
|
|
callback()
|
|
|
}
|
|
|
}, trigger: 'blur'}],
|
|
|
- password:{required: true, message:'Password cannot be null', trigger: 'blur'}
|
|
|
+ password:[{required: true, message:'Password cannot be null', trigger: 'blur'},
|
|
|
+ {
|
|
|
+ validator:passwordDigitValidator,trigger:'blur'
|
|
|
+ }]
|
|
|
})
|
|
|
|
|
|
const login=()=>{
|
|
@@ -129,7 +134,10 @@ import md5 from 'md5';
|
|
|
email:[{required: true, message:'Email address cannot be null', trigger: 'blur'},
|
|
|
{type:'email',message:'Email address format is incorrect', trigger: 'blur'}],
|
|
|
verificationCode:{required: true, message:'Verification code cannot be null', trigger: 'blur'},
|
|
|
- password:{required: true, message:'Password cannot be null', trigger: 'blur'},
|
|
|
+ password:[{required: true, message:'Password cannot be null', trigger: 'blur'},
|
|
|
+ {
|
|
|
+ validator:passwordDigitValidator,trigger:'blur'
|
|
|
+ }],
|
|
|
passwordConfirm:[{required: true, message:'Password cannot be null', trigger: 'blur'},
|
|
|
{validator:(rule,value,callback)=>{
|
|
|
if(registerForm.passwordConfirm!==registerForm.password){
|
|
@@ -247,7 +255,7 @@ import md5 from 'md5';
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="password" style="width: 360px;">
|
|
|
- <el-input v-model="loginForm.password" size="large" type="password" placeholder="Please enter a password"></el-input>
|
|
|
+ <el-input v-model="loginForm.password" size="large" type="password" placeholder="Please enter at least 6 passwords"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div class="register-message-row">
|
|
@@ -302,12 +310,12 @@ import md5 from 'md5';
|
|
|
<el-input v-model.trim="loginForm.phone" style="flex-grow: 1;" placeholder="Please enter your phone number" size="large"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="password" label="Password" size="large">
|
|
|
- <el-input v-model="loginForm.password" size="large" type="password" placeholder="Please enter a password"></el-input>
|
|
|
+ <el-input v-model="loginForm.password" size="large" type="password" placeholder="Please enter at least 6 passwords"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div class="mobile-login-type-change">
|
|
|
<span @click="changeLoginType(loginType==1?2:1)">Login with {{ loginType==1?"phone number":"email" }} instead</span>
|
|
|
- <span @click="psdMissingPageGo">Forgot your password?</span>
|
|
|
+ <span @click="psdMissingPageGo" style="color:#1856A7">Forgot your password?</span>
|
|
|
</div>
|
|
|
<el-button type="primary" class="submit-button" @click="login" size="large">Log in now</el-button>
|
|
|
<div class="privacy-policy">
|
|
@@ -339,7 +347,7 @@ import md5 from 'md5';
|
|
|
<el-input v-model="registerForm.verificationCode" size="large" placeholder="Please enter the verification code"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="password" label="Password" size="large" v-if="step==2">
|
|
|
- <el-input v-model="registerForm.password" size="large" type="password" placeholder="Please enter a password"></el-input>
|
|
|
+ <el-input v-model="registerForm.password" size="large" type="password" placeholder="Please enter at least 6 passwords"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="passwordConfirm" style="margin-bottom: 0;" label="Password" size="large" v-if="step==2">
|
|
|
<el-input v-model="registerForm.passwordConfirm" size="large" type="password" placeholder="Please enter the password again"></el-input>
|
|
@@ -470,8 +478,9 @@ import md5 from 'md5';
|
|
|
}
|
|
|
.password-miss{
|
|
|
font-size: 14px;
|
|
|
- color: #333333;;
|
|
|
+ // color: #333333;;
|
|
|
cursor: pointer;
|
|
|
+ color: #1856A7;
|
|
|
}
|
|
|
}
|
|
|
.login-hint{
|