From d46cc1d8bfe04523a1602512e555d714a8745ab4 Mon Sep 17 00:00:00 2001 From: x_z Date: Mon, 1 Aug 2022 11:40:36 +0800 Subject: [PATCH 1/5] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E6=A1=86=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF=202.=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E5=8D=95=E6=8D=AE=E7=B1=BB=E5=9E=8B=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E6=B8=85=E7=A9=BA=E5=BE=80=E6=9D=A5=E4=BF=A1=E6=81=AF=203.?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=82=B9=E5=87=BB=E7=A9=BA=E7=99=BD=E5=A4=84?= =?UTF-8?q?=E5=85=B3=E9=97=AD=E5=BC=B9=E7=AA=97=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/invWarehouse.vue | 9 +++++---- src/views/userManage/customerManage.vue | 2 +- src/views/userManage/userAccountManage.vue | 11 ++--------- src/views/warehouse/addHosOrder.vue | 3 +++ src/views/warehouse/addOrder.vue | 1 + 5 files changed, 12 insertions(+), 14 deletions(-) diff --git a/src/views/basic/invWarehouse.vue b/src/views/basic/invWarehouse.vue index 330eb9b..77c2927 100644 --- a/src/views/basic/invWarehouse.vue +++ b/src/views/basic/invWarehouse.vue @@ -677,7 +677,7 @@ diff --git a/src/views/userManage/userAccountManage.vue b/src/views/userManage/userAccountManage.vue index 8bbac1a..f91c602 100644 --- a/src/views/userManage/userAccountManage.vue +++ b/src/views/userManage/userAccountManage.vue @@ -96,6 +96,8 @@ :before-close="hideForm" width="70%" top="5vh" + :close-on-click-modal="false" + :close-on-press-escape="false" > @@ -363,13 +365,6 @@ export default { } }, formSubmit() { - console.log( - this.formData.userName + - "--222---" + - this.formData.employeeName + - this.formData.userFlag + - this.formData.id - ); this.$refs["dataForm"].validate((valid) => { if (valid) { this.formLoading = true; @@ -388,7 +383,6 @@ export default { userName: this.formData.userName, employeeName: this.formData.employeeName, }; - console.log(savequery.id + "---"); authAdminSave(savequery, this.formName).then((response) => { this.formLoading = false; if (response.code !== 20000) { @@ -410,7 +404,6 @@ export default { this.resetForm(); }); } else { - console.log("参数错误"); } }); }, diff --git a/src/views/warehouse/addHosOrder.vue b/src/views/warehouse/addHosOrder.vue index baa8079..dd9c15e 100644 --- a/src/views/warehouse/addHosOrder.vue +++ b/src/views/warehouse/addHosOrder.vue @@ -1024,6 +1024,9 @@ export default { this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill); this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck); + this.formData.fromCorp = null; + this.formData.fromSubInvCode = null; + // this.formData.vailIn = this.curAction.vailInv; // this.formData.preCheck = this.curAction.scanPreIn; // this.formData.outChangeEnable = this.curAction.ullageFill; diff --git a/src/views/warehouse/addOrder.vue b/src/views/warehouse/addOrder.vue index 97efb68..f05c416 100644 --- a/src/views/warehouse/addOrder.vue +++ b/src/views/warehouse/addOrder.vue @@ -833,6 +833,7 @@ export default { this.curAction = this.getActionItem(item); this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck); // this.formData.locStorageCode = this.curAction.storageCode; + this.formData.fromCorp = null; }, //绑定数据 bindRl(val) { From 7a0c579c0cce5ae4420e2a9efe1e0cb913020deb Mon Sep 17 00:00:00 2001 From: x_z Date: Wed, 3 Aug 2022 08:41:28 +0800 Subject: [PATCH 2/5] =?UTF-8?q?1.=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/BasicEntrutsReceModify.vue | 2 +- src/views/basic/BussinessTypeThird.vue | 12 ++++++++++-- src/views/inventory/InvPreInProductsDetail.vue | 7 +++++-- src/views/inventory/InvProducts.vue | 3 +++ src/views/inventory/InvProductsDetail.vue | 7 +++++-- src/views/inventory/invPreInProducts.vue | 2 ++ src/views/inventory/supInvProducts.vue | 1 + src/views/thrsys/ThrProductsCheck.vue | 2 +- 8 files changed, 28 insertions(+), 8 deletions(-) diff --git a/src/views/basic/BasicEntrutsReceModify.vue b/src/views/basic/BasicEntrutsReceModify.vue index b684c6a..3baeccf 100644 --- a/src/views/basic/BasicEntrutsReceModify.vue +++ b/src/views/basic/BasicEntrutsReceModify.vue @@ -324,7 +324,6 @@ export default { }, entrustSubInvChange() { - let query = { code: this.inputQuery.entrustSubInv, } @@ -358,6 +357,7 @@ export default { this.getList(); this.getStorage(); + // if (this.$isNotBlank(this.inputQuery.entrustInv)) { // this.findEntrustSubInvByInv(); // } diff --git a/src/views/basic/BussinessTypeThird.vue b/src/views/basic/BussinessTypeThird.vue index 8948082..526e825 100644 --- a/src/views/basic/BussinessTypeThird.vue +++ b/src/views/basic/BussinessTypeThird.vue @@ -41,10 +41,9 @@ - - +