From 8b2f2da7d511ad5278e4f6f267e29e10aa5ee5bb Mon Sep 17 00:00:00 2001 From: xielue Date: Fri, 6 Oct 2023 19:32:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A2=9E=E5=8A=A0mold=5Fmast?= =?UTF-8?q?er=5Fname=20engineer=5Fname?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Middle/Mold/MoldProductionOrder/Edit.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue b/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue index 3f0aac9..68ff789 100644 --- a/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue +++ b/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue @@ -810,8 +810,13 @@ export default { postdata.engineer_uid = this.$mk.toBigInt(postdata.engineer_uid); } + if (postdata.mold_master_user_detail) { + postdata.mold_master_name = postdata.mold_master_user_detail.name || ''; + } + if (postdata.engineer_detail) { + postdata.engineer_name = postdata.engineer_detail.name || ''; + } - postdata.mold_production_order_component = !this.isEdit ? [] : { insertList: [], deleteList: [], updateList: [] }; postdata.mold_production_order_component_processes = !this.isEdit ? [] : { insertList: [], deleteList: [], updateList: [] };