From b8096b39f3926f49a3361ae9e80cbcda33fe7e81 Mon Sep 17 00:00:00 2001 From: zhouxueli <2841188632@qq.com> Date: Tue, 9 Jul 2024 15:41:56 +0800 Subject: [PATCH] =?UTF-8?q?task#14196=EF=BC=8C=E9=AB=98=E4=BA=AE=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E8=89=B2=E6=94=B9=E4=B8=BA=E8=93=9D=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/kpi/components/noFit-table.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/kpi/components/noFit-table.vue b/src/views/kpi/components/noFit-table.vue index 0cc3da20..3021f2bf 100644 --- a/src/views/kpi/components/noFit-table.vue +++ b/src/views/kpi/components/noFit-table.vue @@ -31,7 +31,7 @@ export default { if(columnIndex){ const rate = parseFloat(row.threeMinutesReceivingRate.replace('%', '')); if(rate < 95){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } } @@ -39,7 +39,7 @@ export default { if(column.property=='receiving'){ if(columnIndex){ if(row.receiving > 5){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } } @@ -47,7 +47,7 @@ export default { if(column.property=='arriving'){ if(columnIndex){ if(row.arriving > 40){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } } @@ -56,7 +56,7 @@ export default { if(columnIndex){ const rate = parseFloat(row.polymerizationSuccessRate.replace('%', '')); if(rate < 80){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } } @@ -65,7 +65,7 @@ export default { if(columnIndex){ const rate = parseFloat(row.appRate.replace('%', '')); if(rate < 95){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } } @@ -74,7 +74,7 @@ export default { if(columnIndex){ const rate = parseFloat(row.urgeRate.replace('%', '')); if(rate > 3){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } } @@ -83,7 +83,7 @@ export default { if(columnIndex){ const rate = parseFloat(row.complainOrderRate.replace('%', '')); if(rate > 0.1){ - return {backgroundColor: 'yellow'} + return {backgroundColor: '#88C9F2'} } } }