From 41306060d0868f8ebec2312d27588e91a8154376 Mon Sep 17 00:00:00 2001 From: chenjianan Date: Tue, 26 Mar 2019 13:45:08 +0800 Subject: [PATCH] fix bug --- src/views/TechnologyCenter/CreatePackingList/index.vue | 5 +++++ 1 file changed, 5 insertions(+) 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 = `新增总装箱单` },