Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
747f68e5
Commit
747f68e5
authored
Aug 16, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跟进列表 跟进人模糊搜索
parent
4eb081ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Remark.php
application/index/controller/Remark.php
+5
-1
No files found.
application/index/controller/Remark.php
View file @
747f68e5
...
...
@@ -71,7 +71,10 @@ class Remark extends Basic
//跟进人名字
if
(
!
empty
(
$this
->
params
[
'remark_name'
]))
{
$agent_where
[
'name'
]
=
$this
->
params
[
'remark_name'
];
if
(
mb_strlen
(
$this
->
params
[
'remark_name'
])
<
2
)
{
return
$this
->
response
(
101
,
'名字长度不足2位'
);
}
$agent_where
[
'name'
]
=
[
'LIKE'
,
'%'
.
$this
->
params
[
'remark_name'
]
.
'%'
];
}
//跟进人手机号
...
...
@@ -113,6 +116,7 @@ class Remark extends Basic
$data
[
'data'
][
'list'
]
=
[];
return
$this
->
response
(
200
,
''
,
$data
);
//处理经纪人空数据
}
else
{
$agent_id
=
[];
foreach
(
$agent_id_arr
as
$K
=>
$v
)
{
$agent_id
[]
=
$v
[
'id'
];
}
...
...
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