$grid->rows(function ($rows) {
return $rows->each(function ($row) {
if ($row->status == 'error') { // 替换为你的条件
$row->style("text-decoration: line-through red;");
}
});
});
$grid->rows(function ($rows) {
return $rows->each(function ($row) {
if ($row->status == 'error') { // 替换为你的条件
$row->style("text-decoration: line-through red;");
}
});
});