fix: 谱系-计算结果

This commit is contained in:
JiangSheng
2026-03-10 17:51:08 +08:00
parent fb26795e19
commit e9c2ceb757
2 changed files with 12 additions and 15 deletions

View File

@@ -31,4 +31,6 @@ export const FILE_TYPE = {
REVIEW_FILE: 15,
/** 结果视频 */
VIDEO_FILE: 16,
/** 计算结果 */
CALCULATION_RESULT: 19,
};

View File

@@ -48,21 +48,16 @@
</div>
<div v-else-if="currentNode === 'calcResult'" class="detail-content">
<div class="sim-params-tabs">
<el-radio-group v-model="currentCalcResultNodeId" @change="flowNodeRadioChangeFun">
<el-radio-button v-for="item in flowNodeList" :key="item.uuid" :value="item.uuid">
{{ item.nodeName }}
</el-radio-button>
</el-radio-group>
</div>
<div class="sim-params-content">
<RunDataPage
v-if="currentCalcResultNode"
:nodeInfo="currentCalcResultNode"
:fileId="currentCalcResultNode.outputDirId"
:readonly="true"
/>
</div>
<BaseTable
ref="calcResultTableRef"
tableName="RESULT_FILE"
:api="getFileListApiFun"
:params="getParamsByTypeFun(FILE_TYPE.CALCULATION_RESULT)"
showIndex
:fullHeight="true"
hideSearch
:actionList="calcFileActionList"
/>
</div>
<div v-else-if="currentNode === 'keyResult'" class="detail-content">