|
|
@@ -382,10 +382,9 @@
|
|
|
|
|
|
<el-table-column label="任务状态" align="center" prop="isClaim" min-width="150px">
|
|
|
<template #default="scope">
|
|
|
- <el-tag :type="getTypeColor(scope.row.isClaim ? 400 : 100)">{{
|
|
|
- PressureTaskOrderTaskStatusMap[scope.row.isClaim ? 400 : 100]
|
|
|
- }}
|
|
|
- </el-tag>
|
|
|
+ <el-tag :type="scope.row.isClaim ? 'success' : 'default'">{{
|
|
|
+ scope.row.isClaim ? '已认领' : '待认领'
|
|
|
+ }}</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="主报告状态" align="center" prop="taskStatus" min-width="150px">
|