From 18390c3bb00e6249705bdcdf2686a3ee58947399 Mon Sep 17 00:00:00 2001 From: JiangSheng Date: Wed, 25 Mar 2026 16:52:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A1=A8=E6=A0=BC=E9=97=AA=E7=83=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/pedigree/pedigreeDetail.vue | 34 +++++++++++-------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/src/views/data/analysis/components/pedigree/pedigreeDetail.vue b/src/views/data/analysis/components/pedigree/pedigreeDetail.vue index 15f43544..c03f9d46 100644 --- a/src/views/data/analysis/components/pedigree/pedigreeDetail.vue +++ b/src/views/data/analysis/components/pedigree/pedigreeDetail.vue @@ -5,7 +5,7 @@ ref="inputModelTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getParamsByTypeFun(FILE_TYPE.MODEL_3D_FILE)" + :params="modelParams" showIndex :fullHeight="true" hideSearch @@ -39,7 +39,7 @@ ref="calcModelTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getParamsByTypeFun(FILE_TYPE.CALCULATION_FILE)" + :params="calcFileParams" showIndex :fullHeight="true" hideSearch @@ -52,7 +52,7 @@ ref="calcResultTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getParamsByTypeFun(FILE_TYPE.CALCULATION_RESULT)" + :params="calcResultParams" showIndex :fullHeight="true" hideSearch @@ -75,7 +75,7 @@ ref="cloudImageTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getKeyResultParamsFun(FILE_TYPE.PNG_FILE)" + :params="cloudImageParams" showIndex :fullHeight="true" hideSearch @@ -86,7 +86,7 @@ ref="curveTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getKeyResultParamsFun(FILE_TYPE.CANVAS_FILE)" + :params="curveParams" showIndex :fullHeight="true" hideSearch @@ -109,7 +109,7 @@ ref="videoTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getKeyResultParamsFun(FILE_TYPE.VIDEO_FILE)" + :params="videoParams" showIndex :fullHeight="true" hideSearch @@ -123,7 +123,7 @@ ref="reportTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getParamsByTypeFun(FILE_TYPE.REPORT_FILE)" + :params="reportParams" showIndex :fullHeight="true" hideSearch @@ -136,7 +136,7 @@ ref="testDataTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getParamsByTypeFun(FILE_TYPE.TEST_DOCUMENT_FILE)" + :params="testDataParams" showIndex :fullHeight="true" hideSearch @@ -152,7 +152,7 @@ ref="reviewReportTableRef" tableName="DATA_SEARCH" :api="getFileListApiFun" - :params="getParamsByTypeFun(FILE_TYPE.REVIEW_FILE)" + :params="reviewFileParams" showIndex :fullHeight="true" hideSearch @@ -165,7 +165,7 @@