|
|
@@ -96,9 +96,12 @@
|
|
|
width="50"></el-table-column>
|
|
|
<el-table-column label="要求" prop="conditionIdentifyNum" align="center" width="60px">
|
|
|
<template slot-scope="scope">
|
|
|
- <span :style="{ color: scope.row.meetTheStandard == 1 ? '#07c160' : 'red' }">
|
|
|
+ <span
|
|
|
+ v-if="scope.row.meetTheStandard != null"
|
|
|
+ :style="{ color: scope.row.meetTheStandard == 1 ? '#07c160' : 'red' }">
|
|
|
{{ scope.row.conditionIdentifyNum }}
|
|
|
</span>
|
|
|
+ <span v-else>{{ scope.row.conditionIdentifyNum }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -122,13 +125,6 @@
|
|
|
<van-button round type="danger" v-if="item.taskPhotoConditionPassed == 0"
|
|
|
>不通过</van-button
|
|
|
>
|
|
|
- <!-- <img
|
|
|
- @click="openDialog"
|
|
|
- :src="
|
|
|
- item.taskPhotoConditionPassed == 1
|
|
|
- ? require('@/assets/taskPhotoSu.png')
|
|
|
- : require('@/assets/taskPhotoErr.png')
|
|
|
- " /> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|