diff --git a/src/views/TechnologyCenter/CreatePackingList/index.vue b/src/views/TechnologyCenter/CreatePackingList/index.vue index 0203931d..7d3e5aa3 100644 --- a/src/views/TechnologyCenter/CreatePackingList/index.vue +++ b/src/views/TechnologyCenter/CreatePackingList/index.vue @@ -722,6 +722,11 @@ export default { }, addReceipt() { this.addForm('receiptForm') + for (let i = 0; i < this.project.length; i++) { + if (this.projectValue === this.project[i].value) { + this.receiptForm.名称 = this.project[i].label + } + } this.receiptVisible = true this.receiptTitle = `新增总装箱单` },