|
|
@@ -87,7 +87,13 @@ |
|
|
|
<el-table-column label="执行表达式" align="center" prop="cronExpression" width="100" /> |
|
|
|
<el-table-column label="任务执行状态" align="center" fixed="right" prop="taskStatus" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<dict-tag :options="dict.type.plan_run_status" :value="scope.row.taskStatus" /> |
|
|
|
<el-popover v-if="scope.row.taskStatus == 'error'" trigger="hover" placement="top"> |
|
|
|
<span>{{ scope.row.remark }}</span> |
|
|
|
<div slot="reference" class="name-wrapper"> |
|
|
|
<dict-tag :options="dict.type.plan_run_status" :value="scope.row.taskStatus" /> |
|
|
|
</div> |
|
|
|
</el-popover> |
|
|
|
<dict-tag v-if="scope.row.taskStatus != 'error'" :options="dict.type.plan_run_status" :value="scope.row.taskStatus" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="上次执行时间" align="center" prop="lastExecTime" width="170" /> |
|
|
@@ -116,7 +122,7 @@ |
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="备注" align="center" prop="remark" /> |
|
|
|
<!-- <el-table-column label="备注" align="center" prop="remark" /> --> |
|
|
|
<el-table-column label="操作" align="center" width="250" fixed="right" class-name="small-padding fixed-width"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<router-link to="/rpa/ctResourceLibrary"> |
|
|
|