procedure cxgrdbtblvwGrid1DBTableView1CustomDrawCell(Sender: TcxCustomGridTableView; ACanvas: TcxCanvas; AViewInfo: TcxGridTableDataCellViewInfo; var ADone: Boolean);
var
BColor, FColor: TColor;
begin
BColor := ACanvas.Canvas.Brush.Color;
FColor := ACanvas.Canvas.Font.Color;
if kbmtblQBC1.FieldByName('ZKState').AsString = '待审核' then
begin
BColor := $00B3BBEA; //clred;
FColor := clBlue;
end;
end;