fix: 谱系-计算结果
This commit is contained in:
@@ -31,4 +31,6 @@ export const FILE_TYPE = {
|
||||
REVIEW_FILE: 15,
|
||||
/** 结果视频 */
|
||||
VIDEO_FILE: 16,
|
||||
/** 计算结果 */
|
||||
CALCULATION_RESULT: 19,
|
||||
};
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user