diff --git a/src/api/inout/orderDetailCode.js b/src/api/inout/orderDetailCode.js
index 05640171..21baba7e 100644
--- a/src/api/inout/orderDetailCode.js
+++ b/src/api/inout/orderDetailCode.js
@@ -75,7 +75,7 @@ export function updateCodeProduct(query) {
}
-//业务明细添加术士套包
+//业务明细添加术式套包
export function addWarlockBagProduct(query) {
return axios({
url: "/udiwms/inout/order/addWarlockBagProduct",
diff --git a/src/views/basic/destiny/warlockBag.vue b/src/views/basic/destiny/warlockBag.vue
index a614074b..29b2ae89 100644
--- a/src/views/basic/destiny/warlockBag.vue
+++ b/src/views/basic/destiny/warlockBag.vue
@@ -206,8 +206,8 @@ export default {
codeArray: [],
editQuery: {},
formMap: {
- "add": "新增术士套包",
- "edit": "编辑术士套包"
+ "add": "新增术式套包",
+ "edit": "编辑术式套包"
},
statusMap: {
1: "草稿",
diff --git a/src/views/basic/destiny/warlockBagModel.vue b/src/views/basic/destiny/warlockBagModel.vue
index 67518400..55e479f7 100644
--- a/src/views/basic/destiny/warlockBagModel.vue
+++ b/src/views/basic/destiny/warlockBagModel.vue
@@ -264,7 +264,7 @@ export default {
},
combine(){
if (this.currentRow == null) {
- this.$message.error('未选择术士套包');
+ this.$message.error('未选择术式套包');
return;
}
diff --git a/src/views/inout/PanelCreateOrderBizDetail.vue b/src/views/inout/PanelCreateOrderBizDetail.vue
index 11e16bbc..8e768705 100644
--- a/src/views/inout/PanelCreateOrderBizDetail.vue
+++ b/src/views/inout/PanelCreateOrderBizDetail.vue
@@ -8,7 +8,7 @@
ref="mainTable"
@click.native.stop="selectWarlockBagFunction()"
:loading="loading"
- >术士套包录入
+ >术式套包录入
术士套包录入
+ >术式套包录入
+
-
-
-
-
-
+ class="el-icon-view"
+ style="margin-top: 10px; margin-right: 10px; font-size: 18px"
+ @click="hidePassword"
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{
+ 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) {
diff --git a/src/views/purchase/purApply/purApplyEditDiaolog.vue b/src/views/purchase/purApply/purApplyEditDiaolog.vue
index 7ee8e69c..4d5bda64 100644
--- a/src/views/purchase/purApply/purApplyEditDiaolog.vue
+++ b/src/views/purchase/purApply/purApplyEditDiaolog.vue
@@ -100,7 +100,7 @@
type="primary"
@click.native.stop="selectWarlockBagFunction()"
:loading="loading"
- >术士套包录入
+ >术式套包录入
产品录入
@@ -148,7 +148,7 @@
术士套包录入
+ >术式套包录入
产品录入
@@ -192,7 +192,7 @@
术士套包录入
+ >术式套包录入
产品录入
@@ -142,7 +142,7 @@