From 7ddb7770415325240775c1fa74e9c01c76141abf Mon Sep 17 00:00:00 2001 From: JiangSheng Date: Wed, 25 Mar 2026 15:27:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=B1=E7=B3=BB=E6=8C=87=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/pedigree/pedigreeDetail.vue | 46 +++++-------------- .../components/pedigree/pedigreeDialog.vue | 3 ++ 2 files changed, 14 insertions(+), 35 deletions(-) diff --git a/src/views/data/analysis/components/pedigree/pedigreeDetail.vue b/src/views/data/analysis/components/pedigree/pedigreeDetail.vue index fdb7bcb4..15f43544 100644 --- a/src/views/data/analysis/components/pedigree/pedigreeDetail.vue +++ b/src/views/data/analysis/components/pedigree/pedigreeDetail.vue @@ -92,21 +92,18 @@ hideSearch :actionList="curveActionList" /> - - - + :showLeftOptions="false" + :showSaveButton="false" + :showSetting="false" + :canUpdate="false" + :showCheckbox="false" + /> (), { pedigreeType: 'run', defaultKeyResultType: '1', }); -const { PERFORMANCE_UNIT } = useDict('PERFORMANCE_UNIT'); const previewVisible = ref(false); const currentRow = ref(null); @@ -313,20 +308,6 @@ const fetchFlowNodesFun = async () => { } }; -const performanceList = ref([]); -const fetchPerformanceListFun = async () => { - if (!props.runId) { - performanceList.value = []; - return; - } - const res: any = await getRunPerformanceApi({ runId: props.runId }); - if (res?.code === 200) { - performanceList.value = res.data || []; - } else { - performanceList.value = []; - } -}; - const currentNodeParams = ref([]); const mergeUserParamsFun = (list: any[], userParams: any): any[] => { @@ -393,19 +374,14 @@ const getKeyResultParamsFun = (fileType: number) => { const cloudImageTableRef = ref(); const curveTableRef = ref(); -const performanceTableRef = ref(); const videoTableRef = ref(); const refreshKeyResultTableFun = () => { const tableRefMap: Record = { '1': cloudImageTableRef, '2': curveTableRef, - '3': performanceTableRef, '4': videoTableRef, }; - if (keyResultType.value === '3') { - fetchPerformanceListFun(); - } tableRefMap[keyResultType.value]?.value?.resetFun(true); }; diff --git a/src/views/data/analysis/components/pedigree/pedigreeDialog.vue b/src/views/data/analysis/components/pedigree/pedigreeDialog.vue index 7ed1fec6..0a8dde76 100644 --- a/src/views/data/analysis/components/pedigree/pedigreeDialog.vue +++ b/src/views/data/analysis/components/pedigree/pedigreeDialog.vue @@ -28,6 +28,7 @@
= { inputModel: '数据谱系.3D模型', @@ -129,6 +131,7 @@ watch( () => props.modelValue, (newVal) => { if (newVal) { + detailKey.value++; const defaultNodeId = getDefaultNodeIdFun(); currentNodeId.value = defaultNodeId; nextTick(() => {