From cb0f8790dc1f81ea0fb60ba043dea12e8d4bae4e Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Thu, 31 Jul 2025 17:20:02 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix(qms):=20=E9=87=8D=E7=BD=AE=E6=A3=80?= =?UTF-8?q?=E9=AA=8C=E6=A8=A1=E6=9D=BF=E8=A1=A8=E5=8D=95=E6=97=B6=E6=B8=85?= =?UTF-8?q?=E9=99=A4=E5=B7=B2=E9=80=89=E6=8B=A9=E7=9A=84=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86=E3=80=81=E5=B7=A5=E5=BA=8F=E5=92=8C=E7=AB=99=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在重置表单时添加了清除 selectedStaionId、selectedProcessId 和 selectedSupplierId 的逻辑 - 确保用户在重置表单后能够正确地重新选择这些关联项 --- src/views/qms/qcInspectionTemplate/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/qms/qcInspectionTemplate/index.vue b/src/views/qms/qcInspectionTemplate/index.vue index fc80cd9..463d205 100644 --- a/src/views/qms/qcInspectionTemplate/index.vue +++ b/src/views/qms/qcInspectionTemplate/index.vue @@ -600,6 +600,9 @@ const reset = () => { form.value = {...initFormData}; qcInspectionTemplateFormRef.value?.resetFields(); selectedMaterialId.value = null; + selectedStaionId.value = null; + selectedProcessId.value = null; + selectedSupplierId.value = null; } /** 子表取消按钮 */ From 7cdd31bf27fe58c50ea1ca078e9764d6570b9b89 Mon Sep 17 00:00:00 2001 From: yinq Date: Thu, 31 Jul 2025 17:50:01 +0800 Subject: [PATCH 2/2] =?UTF-8?q?update=20sys=E6=B7=BB=E5=8A=A0=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E4=BF=A1=E6=81=AF=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/printTemplateInfo/index.vue | 258 ++++++++++--------- src/views/system/printTemplateList/index.vue | 16 +- src/views/system/printTemplateNode/index.vue | 22 +- 3 files changed, 161 insertions(+), 135 deletions(-) diff --git a/src/views/system/printTemplateInfo/index.vue b/src/views/system/printTemplateInfo/index.vue index eafc2bd..15b1227 100644 --- a/src/views/system/printTemplateInfo/index.vue +++ b/src/views/system/printTemplateInfo/index.vue @@ -1,115 +1,129 @@