|
|
|
@ -49,13 +49,13 @@
|
|
|
|
|
<el-table-column label="任务ID" fixed align="center" prop="id" /> |
|
|
|
|
<el-table-column label="任务状态" fixed align="center" prop="status" > |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 0">计划中</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 1">准备中</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 2">已开始</el-button> |
|
|
|
|
<el-button type="danger" v-if="scope.row.status == 3">异常状态</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 4">任务完成</el-button> |
|
|
|
|
<el-button type="danger" v-if="scope.row.status == 5">返工</el-button> |
|
|
|
|
<el-button type="danger" v-if="scope.row.status == 6">任务关闭</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 'PLAN'">计划中</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 'READY'">准备中</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 'STARTED'">已开始</el-button> |
|
|
|
|
<el-button type="danger" v-if="scope.row.status == 'EXCEPTION'">异常状态</el-button> |
|
|
|
|
<el-button type="success" v-if="scope.row.status == 'COMPLETE'">任务完成</el-button> |
|
|
|
|
<el-button type="danger" v-if="scope.row.status == 'RETRY'">返工</el-button> |
|
|
|
|
<el-button type="danger" v-if="scope.row.status == 'END'">任务关闭</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="项目名" fixed align="center" prop="projectName"> |
|
|
|
|