@@ -135,7 +135,7 @@
<el-table-column v-if="this.taskWorkRemakA==0" prop="compareResult2" align="center" label="协同比对结果" width="300px">
<template slot-scope="scope">
<div v-if="scope.row">
- <span v-if="scope.row.compareResult2 && scope.row.compareResult2.toString()!=''">{{ options.filter(item=>item.value==scope.row.compareResult2)[0].label }}</span>
+ <span v-if="scope.row.hasOwnProperty('compareResult2') && scope.row.compareResult2.toString()!=''">{{ options.filter(item=>item.value==scope.row.compareResult2)[0].label }}</span>
</div>
<!-- <el-select v-model="scope.row.compareResult2" placeholder="请选择">
<el-option
@@ -176,7 +176,6 @@
// '0':'未完成',
// '1':'完成'
// },
- status: ['未完成', '已完成','负责人处理中'],
coordination:true,
};
},