fix(任务中心): 修复任务中心,执行状态未显示问题

This commit is contained in:
fit2-zhao 2021-06-29 14:21:27 +08:00 committed by fit2-zhao
parent 9562deab8e
commit 774233f8c2
1 changed files with 8 additions and 1 deletions

View File

@ -43,7 +43,14 @@
<el-card class="ms-card-task" @click.native="showReport(item,$event)">
<span>{{ item.name }} </span><br/>
<span>执行器{{ item.actuator }} {{ item.executor }} {{ item.executionTime | timestampFormatDate }} {{ getMode(item.triggerMode) }}</span><br/>
<el-progress :percentage="getPercentage(item.executionStatus)"></el-progress>
<el-row>
<el-col :span="20">
<el-progress :percentage="getPercentage(item.executionStatus)"/>
</el-col>
<el-col :span="4">
<span>{{ item.executionStatus }}</span>
</el-col>
</el-row>
</el-card>
</div>
</div>