From 270b4d0491a9d9642ced64d7024adebb71166686 Mon Sep 17 00:00:00 2001 From: Aoi_Tori <2547614904@qq.com> Date: Wed, 23 Jul 2025 11:11:53 +0800 Subject: [PATCH] 2025/7/23 --- .../technicalSpecificationDetail/com_bm_bom.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue index 4f185b6..16b1fbf 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue @@ -286,7 +286,10 @@ - + + 查询 @@ -720,7 +723,7 @@ }, async searchTable (type) { - await getOADetailForBM(this.searchData).then(({data}) => { + await getOADetailForBM(this.searchData).then(({data}) => { this.spForm.nodeName = data.row.nodeName this.spForm.sp = data.row.sp == null ? '' : data.row.sp }) @@ -954,7 +957,10 @@ }, }, watch: { - }, + 'bomData.urlFile'(newVal) { + this.$forceUpdate(); // 强制更新视图 + } + } }