Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvsuo-pc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhilin
lvsuo-pc
Commits
e87f4ccc
Commit
e87f4ccc
authored
Aug 13, 2025
by
liuyingkang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(控制器): 在CovenantController网格视图中添加回避信息筛选
添加了'avoid'字段的模糊搜索筛选功能,方便用户根据回避信息进行数据筛选
parent
c381a567
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
+1
-0
app/Admin/Controllers/CovenantController.php
+1
-0
No files found.
app/Admin/Controllers/CovenantController.php
View file @
e87f4ccc
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment