diff --git a/src/views/modules/production/productionBlankingSearch.vue b/src/views/modules/production/productionBlankingSearch.vue index 4468990..ddf3ce5 100644 --- a/src/views/modules/production/productionBlankingSearch.vue +++ b/src/views/modules/production/productionBlankingSearch.vue @@ -319,13 +319,16 @@ this.dataListSelections = val }, tableRowClassName ({row, rowIndex}) { - if (row.finishedFlag == '2') { - return 'success-row' - } - if (row.finishedFlag == '3') { - return 'false-row' - } - if (row.finishedFlag == '4') { + // if (row.finishedFlag == '2') { + // return 'success-row' + // } + // if (row.finishedFlag == '3') { + // return 'false-row' + // } + // if (row.finishedFlag == '4') { + // return 'yellow-row' + // } + if (row.orderTypeDesc==='加急订单'||row.orderTypeDesc==='变更订单') { return 'yellow-row' } return '' @@ -458,6 +461,8 @@ }).catch(() => { }) }, + + } }