颜色问题

This commit is contained in:
Ledo 2025-07-21 17:02:48 +08:00
parent b03045f497
commit dcab329a89

View File

@ -744,7 +744,6 @@ const cellClassName = ({ row,column }) => {
};
if (item.procedureName == column.label && item.flag === 2) return 'yellow-cell';
if (item.procedureName == column.label && item.flag === 3) return 'red-cell';
return '';
}
}
@ -798,13 +797,13 @@ onMounted(async () => {
background-color: #D3D3D3 !important;
}
.green-cell {
background-color: #e6f7e6 !important;
background-color: #98FB98 !important;
}
.yellow-cell {
background-color: #fffbe6 !important;
background-color: #FFFF00 !important;
}
.red-cell {
background-color: #fff1f0 !important;
background-color: #FF6347 !important;
}
.custom-cell {
display: flex;