| | |
| | | > |
| | | <template slot-scope="scope"> |
| | | {{ |
| | | scope.row.isQualified == 0 |
| | | scope.row.result == 0 |
| | | ? '不合格' |
| | | : (scope.row.isQualified==1?'合格':'') |
| | | : (scope.row.result==1?'合格':'') |
| | | }} |
| | | </template> |
| | | </el-table-column> |
| | |
| | | > |
| | | <template slot-scope="scope"> |
| | | {{ |
| | | scope.row.isQualified == 0 |
| | | scope.row.result == 0 |
| | | ? '不合格' |
| | | : (scope.row.isQualified==1?'合格':'') |
| | | : (scope.row.result==1?'合格':'') |
| | | }} |
| | | </template> |
| | | </el-table-column> |
| | |
| | | }, |
| | | labelFormatter(ele) { |
| | | let partLabel |
| | | const part = this.partList.find((item) => ele.systemNo === item.systemNo) |
| | | const part = this.partList.find((item) => ele.customerOrderId === item.customerOrderId) |
| | | if (part !== undefined) { |
| | | partLabel = |
| | | '销售订单号:' + |