From 2bb5a96385f9396a4733ced3f61ab4de8cef2f9a Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Thu, 22 May 2025 17:33:11 +0800 Subject: [PATCH] 2025-05-22 --- .../com_tsd_basicInformation.vue | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue index 353248d..51feb96 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue @@ -105,7 +105,7 @@ - + @@ -118,6 +118,13 @@ + + + + + + + @@ -491,6 +498,7 @@ cqcOperatorList:[], faiVisible:false, faiOperatorList:[], + ecnNeedChangeDrawing:'No', } }, methods: { @@ -616,6 +624,13 @@ if (data && data.code == 0) { this.getNodeAuthority(data.row) this.dataForm = data.row + + // 2025-05-22海波要求添加 初始化这个值 ecnNeedChangeDrawing监听这个反刷 this.dataForm.ecnNeedChangeDrawing + if (this.dataForm.ecnNeedChangeDrawing === 'Y'){ + this.ecnNeedChangeDrawing = 'Yes' + }else { + this.ecnNeedChangeDrawing = 'No' + } // this.$message.success( '操作成功') let inData = { site: this.dataForm.site, @@ -1135,6 +1150,13 @@ this.faiOperatorList = [] } }, + ecnNeedChangeDrawing(newVal){ + if (newVal === 'Yes'){ + this.dataForm.ecnNeedChangeDrawing = "Y" + }else { + this.dataForm.ecnNeedChangeDrawing = "N" + } + }, }, }