task#14196,高亮背景色改为蓝色

This commit is contained in:
2024-07-09 15:41:56 +08:00
parent 3a45615e4f
commit b8096b39f3

View File

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