feat: 术式和登录页修改

dev_ksck2.0
chenhc 12 months ago
parent 4bb9e864d6
commit 51bd03f4a7

@ -75,7 +75,7 @@ export function updateCodeProduct(query) {
} }
//业务明细添加术套包 //业务明细添加术套包
export function addWarlockBagProduct(query) { export function addWarlockBagProduct(query) {
return axios({ return axios({
url: "/udiwms/inout/order/addWarlockBagProduct", url: "/udiwms/inout/order/addWarlockBagProduct",

@ -206,8 +206,8 @@ export default {
codeArray: [], codeArray: [],
editQuery: {}, editQuery: {},
formMap: { formMap: {
"add": "新增术套包", "add": "新增术套包",
"edit": "编辑术套包" "edit": "编辑术套包"
}, },
statusMap: { statusMap: {
1: "草稿", 1: "草稿",

@ -264,7 +264,7 @@ export default {
}, },
combine(){ combine(){
if (this.currentRow == null) { if (this.currentRow == null) {
this.$message.error('未选择术套包'); this.$message.error('未选择术套包');
return; return;
} }

@ -8,7 +8,7 @@
ref="mainTable" ref="mainTable"
@click.native.stop="selectWarlockBagFunction()" @click.native.stop="selectWarlockBagFunction()"
:loading="loading" :loading="loading"
>套包录入 >套包录入
</el-button> </el-button>
<el-button <el-button
type="primary" type="primary"
@ -122,7 +122,7 @@
</el-table> </el-table>
<el-dialog <el-dialog
title="业务详情-术套包录入" title="业务详情-术套包录入"
:visible.sync="selectWarlockBagVisible" :visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"

@ -111,7 +111,7 @@
type="primary" type="primary"
@click.native.stop="selectWarlockBagFunction()" @click.native.stop="selectWarlockBagFunction()"
:loading="loading" :loading="loading"
>套包录入 >套包录入
</el-button> </el-button>
<el-button <el-button
type="primary" type="primary"
@ -169,7 +169,7 @@
<el-dialog <el-dialog
title="业务详情-术套包录入" title="业务详情-术套包录入"
:visible.sync="selectWarlockBagVisible" :visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"

@ -31,26 +31,45 @@
</i> </i>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item prop="password" class="item"> <el-form-item prop="password" class="item">
<el-input <el-input
prefix-icon="el-icon-lock"
v-model="pwdCover"
type="text"
name="pwd"
id="pwd"
placeholder="密码" placeholder="密码"
name="password" autocomplete="off"
:type="isShowPwd ? 'text' : 'password'" @input="setPassword"
@keyup.enter.native="handleLogin" @keyup.enter.native="handleLogin"
v-model="loginForm.password"
autocomplete="on"
> >
<i slot="prefix" class="el-input__icon">
<icon-svg icon-class="pwd"/>
</i>
<i <i
slot="suffix" slot="suffix"
class="el-input__icon" class="el-icon-view"
@click="isShowPwd = !isShowPwd" style="margin-top: 10px; margin-right: 10px; font-size: 18px"
> @click="hidePassword"
<icon-svg icon-class="eye"/> ></i>
</i>
</el-input> </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>
<el-form-item <el-form-item
prop="verificationCode" prop="verificationCode"
@ -134,6 +153,8 @@ export default {
} }
}; };
return { return {
password:"",
pwdCover:"",
ruleForm: { ruleForm: {
userName: "", userName: "",
pwd: "", pwd: "",
@ -155,6 +176,7 @@ export default {
pwd: [{validator: validatePwd, trigger: "blur"}], pwd: [{validator: validatePwd, trigger: "blur"}],
}, },
isShowPwd: false, // isShowPwd: false, //
isShowPassword: false, //
loading: false, // loading loading: false, // loading
showDialog: false, // dialog showDialog: false, // dialog
redirect: null, // redirect: null, //
@ -170,6 +192,60 @@ export default {
}; };
}, },
methods: { 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) { verifyAlert(text) {
if (text === "success") { if (text === "success") {
this.loginForm.verificationCode = true; this.loginForm.verificationCode = true;
@ -232,6 +308,7 @@ export default {
}; };
}, },
handleLogin() { handleLogin() {
this.loginForm.password = this.password
this.$refs.ruleForm.validate((valid) => { this.$refs.ruleForm.validate((valid) => {
if (valid) { if (valid) {
if (this.loginForm.verificationCode) { if (this.loginForm.verificationCode) {

@ -100,7 +100,7 @@
type="primary" type="primary"
@click.native.stop="selectWarlockBagFunction()" @click.native.stop="selectWarlockBagFunction()"
:loading="loading" :loading="loading"
>套包录入 >套包录入
</el-button> </el-button>
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入 <el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入
</el-button> </el-button>
@ -148,7 +148,7 @@
<el-dialog <el-dialog
title="术套包录入" title="术套包录入"
:visible.sync="selectWarlockBagVisible" :visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"

@ -131,7 +131,7 @@
type="primary" type="primary"
@click.native.stop="selectWarlockBagFunction()" @click.native.stop="selectWarlockBagFunction()"
:loading="loading" :loading="loading"
>套包录入 >套包录入
</el-button> </el-button>
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入 <el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入
</el-button> </el-button>
@ -192,7 +192,7 @@
</el-form> </el-form>
<el-dialog <el-dialog
title="术套包录入" title="术套包录入"
:visible.sync="selectWarlockBagVisible" :visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"

@ -98,7 +98,7 @@
type="primary" type="primary"
@click.native.stop="selectWarlockBagFunction()" @click.native.stop="selectWarlockBagFunction()"
:loading="loading" :loading="loading"
>套包录入 >套包录入
</el-button> </el-button>
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入</el-button> <el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入</el-button>
<!-- <el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入申购单</el-button>--> <!-- <el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入申购单</el-button>-->
@ -142,7 +142,7 @@
</el-form> </el-form>
<el-dialog <el-dialog
title="术套包录入" title="术套包录入"
:visible.sync="selectWarlockBagVisible" :visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"

Loading…
Cancel
Save