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'} } } }