From 7a4dc7a32ac524b3d5b16c0296ea2da234d3ff52 Mon Sep 17 00:00:00 2001 From: long <18782126717@163.com> Date: Mon, 31 Oct 2022 23:13:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=9B=9E=E6=98=BE=E5=AD=98=E5=9C=A8=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/jeecg/HDelivery.vue | 11 +- src/components/jeecg/HPlan.vue | 1 - .../jeecg/modal/ProcessDelivery.vue | 287 ++++++++++-------- src/components/jeecg/modal/ProcessPlan.vue | 34 ++- .../form/ProcessMaterialWarehousingForm.vue | 10 +- .../form/ProcessMaterialsAllotForm.vue | 5 + .../form/ProcessMaterialsDeliveryForm.vue | 5 + .../ProcessPermissionAuthorizationForm.vue | 8 +- .../form/ProcessSmaterialsScrapForm.vue | 7 +- .../form/ProcessSpecialMaterialsForm.vue | 3 +- .../ProcessMaterialsDeliveryListList.vue | 29 +- 11 files changed, 219 insertions(+), 181 deletions(-) diff --git a/src/components/jeecg/HDelivery.vue b/src/components/jeecg/HDelivery.vue index d4a739c..a2139bc 100644 --- a/src/components/jeecg/HDelivery.vue +++ b/src/components/jeecg/HDelivery.vue @@ -128,8 +128,13 @@ }, methods: { openModal() { - if (this.disabled === false) { - this.$refs.ProcessDelivery.show(); + + if (this.showText){ + this.$refs.ProcessDelivery.show(this.showText); + }else { + if (this.disabled === false) { + this.$refs.ProcessDelivery.show(); + } } }, handleEmpty() { @@ -195,7 +200,7 @@ } else { //v-model时 需要传一个参数field 表示当前这个字段 从而根据这个字段的顺序找到原始值 // this.$emit("input",row[orgFieldsArr[destFieldsArr.indexOf(this.field)]]) - this.$emit('input', this.showText, rows[0].id) + this.$emit('input', this.showText, rows[0]) this.$emit('mounted', rows[0].id) this.$emit('callType', rows[0]) } diff --git a/src/components/jeecg/HPlan.vue b/src/components/jeecg/HPlan.vue index ef0be02..3cb823f 100644 --- a/src/components/jeecg/HPlan.vue +++ b/src/components/jeecg/HPlan.vue @@ -96,7 +96,6 @@ computed: { uniqGroupId() { if (this.groupId) { - console.log('*-*-*-*-*->',this.groupId) let { groupId, code, field, orgFields, destFields } = this return `${groupId}_${code}_${field}_${orgFields}_${destFields}` } diff --git a/src/components/jeecg/modal/ProcessDelivery.vue b/src/components/jeecg/modal/ProcessDelivery.vue index 2bcb9d8..208e6b0 100644 --- a/src/components/jeecg/modal/ProcessDelivery.vue +++ b/src/components/jeecg/modal/ProcessDelivery.vue @@ -49,7 +49,8 @@