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
c7f8cd78
Commit
c7f8cd78
authored
Oct 23, 2018
by
zhuwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
f091334c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
User.php
application/api_broker/controller/User.php
+3
-3
Member.php
application/index/controller/Member.php
+3
-4
No files found.
application/api_broker/controller/User.php
View file @
c7f8cd78
...
...
@@ -607,9 +607,9 @@ class User extends Basic
$where
[
'a.province'
]
=
$this
->
params
[
'province'
];
}
if
(
!
empty
(
$this
->
params
[
'city'
]))
{
$where
[
'a.city'
]
=
$this
->
params
[
'city'
];
}
//
if (!empty($this->params['city'])) {
//
$where['a.city'] = $this->params['city'];
//
}
if
(
!
empty
(
$this
->
params
[
'disc'
]))
{
$where
[
'a.disc'
]
=
$this
->
params
[
'disc'
];
...
...
application/index/controller/Member.php
View file @
c7f8cd78
...
...
@@ -115,7 +115,6 @@ class Member extends Basic{
$where
[
'a.site_ids'
]
=
[
'LIKE'
,
'%'
.
$this
->
siteId
.
'%'
];
//默认显示经纪人所在站点的客户
}
}
//是否登录过
if
(
!
empty
(
$params
[
'login_status'
])
&&
$params
[
'login_status'
]
!=
-
1
)
{
if
(
$params
[
'login_status'
]
==
1
)
{
...
...
@@ -264,9 +263,9 @@ class Member extends Basic{
// $where['a.province'] = $params['province'];
// }
if
(
$this
->
city
!=
'全部'
)
{
$where
[
'a.city'
]
=
$params
[
'city'
];
}
//
if ($this->city != '全部') {
//
$where['a.city'] = $params['city'];
//
}
if
(
!
empty
(
$params
[
'disc'
]))
{
$where
[
'a.disc'
]
=
$params
[
'disc'
];
...
...
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