在评论页面中index.php中

            [
'attribute'=>'status',
'value'=>'status0.name',
'filter'=>Commentstatus::find()->select(['name','id'])->orderBy('position')->indexBy('id')->column(),
'contentOptions'=>function($model){ //此处使用匿名函数来判断状态,设定状态的样式
return ($model->status==1)?['class'=>'bg-danger']:[];
}
],
04-27 17:11