feat: 术式和登录页修改

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

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

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

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

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

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

@ -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) {

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

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

@ -98,7 +98,7 @@
type="primary"
@click.native.stop="selectWarlockBagFunction()"
: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>-->
@ -142,7 +142,7 @@
</el-form>
<el-dialog
title="术套包录入"
title="术套包录入"
:visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"

Loading…
Cancel
Save