Commit e87f4ccc by liuyingkang

feat(控制器): 在CovenantController网格视图中添加回避信息筛选

添加了'avoid'字段的模糊搜索筛选功能,方便用户根据回避信息进行数据筛选
parent c381a567
......@@ -115,6 +115,7 @@ protected function grid()
$filter->equal('ctype')->select(Covenant::CTYPE)->width(3);
$filter->equal('payment_method')->select(Covenant::PAYMENT_METHOD)->width(3);
$filter->between('sign_at', '签约日期')->date()->width(4);
$filter->like('avoid','回避信息')->width(3);
});
$grid->export()->rows(function ($rows) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment