|
@@ -35,7 +35,7 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="当前状态" align="center" prop="status" :formatter="statusFormatter" />
|
|
|
+ <el-table-column label="当前状态" align="center" prop="isProgressStatus" :formatter="statusFormatter" />
|
|
|
<el-table-column label="操作" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button v-if="scope.row.lv === 2" type="text" @click="getDetail(scope.row)"
|
|
@@ -338,7 +338,7 @@ export default {
|
|
|
|
|
|
// 字典翻译
|
|
|
statusFormatter(row) {
|
|
|
- return this.selectDictLabel(this.statusOptions, row.status)
|
|
|
+ return this.selectDictLabel(this.statusOptions, row.isProgressStatus)
|
|
|
},
|
|
|
|
|
|
typeFormatter(row) {
|