From 21048003884188b7ab1a2c38410f55a8d7fe0d65 Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Fri, 23 May 2025 13:17:11 +0800 Subject: [PATCH] 2025-05-23 --- .../com_tsd_basicInformation.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue index 51feb96..1c622c2 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue @@ -119,6 +119,7 @@ + @@ -626,7 +627,8 @@ this.dataForm = data.row // 2025-05-22海波要求添加 初始化这个值 ecnNeedChangeDrawing监听这个反刷 this.dataForm.ecnNeedChangeDrawing - if (this.dataForm.ecnNeedChangeDrawing === 'Y'){ + // 2025-05-23 海波要求采用YES/NO + if (this.dataForm.ecnNeedChangeDrawing === 'YES'){ this.ecnNeedChangeDrawing = 'Yes' }else { this.ecnNeedChangeDrawing = 'No' @@ -1152,9 +1154,9 @@ }, ecnNeedChangeDrawing(newVal){ if (newVal === 'Yes'){ - this.dataForm.ecnNeedChangeDrawing = "Y" + this.dataForm.ecnNeedChangeDrawing = "YES" }else { - this.dataForm.ecnNeedChangeDrawing = "N" + this.dataForm.ecnNeedChangeDrawing = "NO" } }, },