From 4720d23b2672a8291e4900097941ca911ff35129 Mon Sep 17 00:00:00 2001 From: ruanqi Date: Fri, 7 Mar 2025 09:21:09 +0800 Subject: [PATCH] =?UTF-8?q?0412=20=E6=96=B0=E7=9C=8B=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../production/productionBlankingSearch.vue | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) 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(() => { }) }, + + } }