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