|
|
|
@ -31,26 +31,45 @@
|
|
|
|
|
</i>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item prop="password" class="item">
|
|
|
|
|
<el-input
|
|
|
|
|
prefix-icon="el-icon-lock"
|
|
|
|
|
v-model="pwdCover"
|
|
|
|
|
type="text"
|
|
|
|
|
name="pwd"
|
|
|
|
|
id="pwd"
|
|
|
|
|
placeholder="密码"
|
|
|
|
|
name="password"
|
|
|
|
|
:type="isShowPwd ? 'text' : 'password'"
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
@input="setPassword"
|
|
|
|
|
@keyup.enter.native="handleLogin"
|
|
|
|
|
v-model="loginForm.password"
|
|
|
|
|
autocomplete="on"
|
|
|
|
|
>
|
|
|
|
|
<i slot="prefix" class="el-input__icon">
|
|
|
|
|
<icon-svg icon-class="pwd"/>
|
|
|
|
|
</i>
|
|
|
|
|
<i
|
|
|
|
|
slot="suffix"
|
|
|
|
|
class="el-input__icon"
|
|
|
|
|
@click="isShowPwd = !isShowPwd"
|
|
|
|
|
>
|
|
|
|
|
<icon-svg icon-class="eye"/>
|
|
|
|
|
</i>
|
|
|
|
|
class="el-icon-view"
|
|
|
|
|
style="margin-top: 10px; margin-right: 10px; font-size: 18px"
|
|
|
|
|
@click="hidePassword"
|
|
|
|
|
></i>
|
|
|
|
|
</el-input>
|
|
|
|
|
<!-- <el-input-->
|
|
|
|
|
<!-- placeholder="密码"-->
|
|
|
|
|
<!-- name="password"-->
|
|
|
|
|
<!-- :type="isShowPwd ? 'text' : 'password'"-->
|
|
|
|
|
<!-- @keyup.enter.native="handleLogin"-->
|
|
|
|
|
<!-- v-model="loginForm.password"-->
|
|
|
|
|
<!-- autocomplete="on"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <i slot="prefix" class="el-input__icon">-->
|
|
|
|
|
<!-- <icon-svg icon-class="pwd"/>-->
|
|
|
|
|
<!-- </i>-->
|
|
|
|
|
<!-- <i-->
|
|
|
|
|
<!-- slot="suffix"-->
|
|
|
|
|
<!-- class="el-input__icon"-->
|
|
|
|
|
<!-- @click="isShowPwd = !isShowPwd"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <icon-svg icon-class="eye"/>-->
|
|
|
|
|
<!-- </i>-->
|
|
|
|
|
<!-- </el-input>-->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item
|
|
|
|
|
prop="verificationCode"
|
|
|
|
@ -134,6 +153,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return {
|
|
|
|
|
password:"",
|
|
|
|
|
pwdCover:"",
|
|
|
|
|
ruleForm: {
|
|
|
|
|
userName: "",
|
|
|
|
|
pwd: "",
|
|
|
|
@ -155,6 +176,7 @@ export default {
|
|
|
|
|
pwd: [{validator: validatePwd, trigger: "blur"}],
|
|
|
|
|
},
|
|
|
|
|
isShowPwd: false, // 是否显示密码
|
|
|
|
|
isShowPassword: false, // 是否显示密码
|
|
|
|
|
loading: false, // 登录loading
|
|
|
|
|
showDialog: false, // 显示dialog
|
|
|
|
|
redirect: null, // 回调地址
|
|
|
|
@ -170,6 +192,60 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
setPassword(val) {
|
|
|
|
|
if (this.isShowPassword) {
|
|
|
|
|
this.password = val;
|
|
|
|
|
} else {
|
|
|
|
|
// let reg = /[0-9a-zA-Z]/g; // 只允许输入字母和数字
|
|
|
|
|
let nDot = /[^●]/g; // 非圆点字符
|
|
|
|
|
let index = -1; // 新输入的字符位置
|
|
|
|
|
let lastChar = void 0; // 新输入的字符
|
|
|
|
|
let realArr = this.password.split(""); // 真实密码数组
|
|
|
|
|
let coverArr = val.split(""); // 文本框显示密码数组
|
|
|
|
|
let coverLen = val.length; // 文本框字符串长度
|
|
|
|
|
let realLen = this.password.length; // 真实密码长度
|
|
|
|
|
// 找到新输入的字符及位置
|
|
|
|
|
coverArr.forEach((el, idx) => {
|
|
|
|
|
if (nDot.test(el)) {
|
|
|
|
|
index = idx;
|
|
|
|
|
lastChar = el;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// 判断输入的字符是否符合规范,不符合的话去掉该字符
|
|
|
|
|
// if (lastChar && !reg.test(lastChar)) {
|
|
|
|
|
// coverArr.splice(index, 1);
|
|
|
|
|
// this.pwdCover = coverArr.join("");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
if (realLen < coverLen) {
|
|
|
|
|
// 新增字符
|
|
|
|
|
realArr.splice(index, 0, lastChar);
|
|
|
|
|
} else if (coverLen <= realLen && index !== -1) {
|
|
|
|
|
// 替换字符(选取一个或多个字符直接替换)
|
|
|
|
|
realArr.splice(index, realLen - (coverLen - 1), lastChar);
|
|
|
|
|
} else {
|
|
|
|
|
// 删除字符,因为 val 全是 ● ,没有办法匹配,不知道是从末尾还是中间删除的字符,删除了几个,不好对 password 处理,所以可以通过光标的位置和 val 的长度来判断
|
|
|
|
|
let pos = document.getElementById("pwd").selectionEnd; // 获取光标位置
|
|
|
|
|
realArr.splice(pos, realLen - coverLen);
|
|
|
|
|
}
|
|
|
|
|
// 将 pwdCover 替换成 ●
|
|
|
|
|
this.pwdCover = val.replace(/\S/g, "●");
|
|
|
|
|
this.password = realArr.join("");
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 点击右侧小眼睛控制显示隐藏
|
|
|
|
|
hidePassword() {
|
|
|
|
|
if (!this.isShowPassword) {
|
|
|
|
|
// console.log("显示");
|
|
|
|
|
this.isShowPassword = true;
|
|
|
|
|
this.pwdCover = this.password;
|
|
|
|
|
} else {
|
|
|
|
|
// console.log("隐藏");
|
|
|
|
|
this.isShowPassword = false;
|
|
|
|
|
this.pwdCover = this.pwdCover.replace(/\S/g, "●");
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
verifyAlert(text) {
|
|
|
|
|
if (text === "success") {
|
|
|
|
|
this.loginForm.verificationCode = true;
|
|
|
|
@ -232,6 +308,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
handleLogin() {
|
|
|
|
|
this.loginForm.password = this.password
|
|
|
|
|
this.$refs.ruleForm.validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.loginForm.verificationCode) {
|
|
|
|
|