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
e06e76e5
Commit
e06e76e5
authored
Oct 22, 2018
by
zhuwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
区分城市
parent
aecfa58c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
User.php
application/api_broker/controller/User.php
+1
-1
CallPhoneService.php
application/api_broker/service/CallPhoneService.php
+1
-1
Label.php
application/index/controller/Label.php
+1
-1
Remark.php
application/index/controller/Remark.php
+1
-1
No files found.
application/api_broker/controller/User.php
View file @
e06e76e5
...
...
@@ -648,7 +648,7 @@ class User extends Basic
// dump($where);exit;
$field
=
'a.id,a.user_id,b.user_nick,b.user_nick,b.agent_id,b.vip,b.create_time'
;
$model
=
new
UPhoneFollowPp
();
$model
=
new
UPhoneFollowPp
(
$this
->
siteId
);
$model_res
=
$model
->
getLastOrNextUserIDPhoneFollowP
(
$where
,
$field
,
$limit
=
1
,
$order
);
if
(
!
$model_res
)
{
...
...
application/api_broker/service/CallPhoneService.php
View file @
e06e76e5
...
...
@@ -497,7 +497,7 @@ class CallPhoneService
*/
public
function
defaultFollowUp
()
{
$m_follow_up
=
new
UPhoneFollowPp
();
$m_follow_up
=
new
UPhoneFollowPp
(
$this
->
siteId
);
$current_time
=
time
();
$time
=
$current_time
-
3600
;
$start_date
=
date
(
'Y-m-d'
,
$time
);
...
...
application/index/controller/Label.php
View file @
e06e76e5
...
...
@@ -162,7 +162,7 @@ class Label extends Basic
if
(
empty
(
$this
->
params
[
'user_id'
]))
{
return
$this
->
response
(
101
,
'没有用户信息'
);
}
$follow
=
new
UPhoneFollowPp
();
$follow
=
new
UPhoneFollowPp
(
$this
->
siteId
);
$user_status
=
$follow
->
getUserFollowKey
(
'user_status'
,
[
'user_id'
=>
$this
->
params
[
'user_id'
]],
'id DESC'
);
return
$this
->
response
(
200
,
''
,
$user_status
);
}
...
...
application/index/controller/Remark.php
View file @
e06e76e5
...
...
@@ -43,7 +43,7 @@ class Remark extends Basic
$pageNo
=
empty
(
$this
->
params
[
'pageNo'
])
?
1
:
$this
->
params
[
'pageNo'
];
$pageSize
=
empty
(
$this
->
params
[
'pageSize'
])
?
15
:
$this
->
params
[
'pageSize'
];
$u_phone_follow
=
new
UPhoneFollowPp
();
$u_phone_follow
=
new
UPhoneFollowPp
(
$this
->
siteId
);
if
(
!
empty
(
$this
->
params
[
'start_date'
])
&&
empty
(
$this
->
params
[
'end_date'
]))
{
$where
[
'create_time'
]
=
[
'> time'
,
$this
->
params
[
'start_date'
]
.
' 00:00:00'
];
...
...
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