fix ui场景列表前端执行结果显示问题修复
This commit is contained in:
@@ -38,7 +38,13 @@
|
||||
<el-table-column prop="dutyBy" label="责任人" min-width="150" align="center" sortable />
|
||||
<el-table-column prop="updateTime" label="最后更新时间" min-width="180" align="center" sortable />
|
||||
<el-table-column prop="stepsNumber" label="步骤数" min-width="80" align="center" />
|
||||
<el-table-column prop="executionResult" label="执行结果" min-width="150" align="center" sortable />
|
||||
<el-table-column prop="executionResult" label="执行结果" min-width="150" align="center" sortable>
|
||||
<template slot-scope="scope">
|
||||
<el-tag v-if="scope.row.executionResult === '1'" type="warning">running</el-tag>
|
||||
<el-tag v-if="scope.row.executionResult === '2'" type="danger">error</el-tag>
|
||||
<el-tag v-if="scope.row.executionResult === '3'" type="success">success</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="passRate" label="通过率" min-width="150" align="center" sortable />
|
||||
<el-table-column prop="action" label="操作" align="center" fixed="right" width="200px">
|
||||
<template slot-scope="scope">
|
||||
|
||||
Reference in New Issue
Block a user