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
759d7139
Commit
759d7139
authored
Feb 28, 2018
by
zfc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pc跟进列表找不到模板
parent
45b2f06d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
Remark.php
application/index/controller/Remark.php
+1
-1
navigation.html
application/index/view/global/navigation.html
+1
-1
Users.php
application/model/Users.php
+5
-4
route.php
application/route.php
+1
-1
No files found.
application/index/controller/Remark.php
View file @
759d7139
...
...
@@ -16,7 +16,7 @@ class Remark extends Basic
{
//跟进主界面
public
function
R
emarkFollowIndex
(){
public
function
r
emarkFollowIndex
(){
return
view
(
'remark_follow_index'
);
}
...
...
application/index/view/global/navigation.html
View file @
759d7139
...
...
@@ -50,7 +50,7 @@
<a
href=
"/admin.php/index/districtList.html"
>
部门列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/
R
emarkFollowIndex.html"
>
跟进列表
</a>
<a
href=
"/admin.php/index/
r
emarkFollowIndex.html"
>
跟进列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/authRuleIndex.html"
>
权限管理
</a>
...
...
application/model/Users.php
View file @
759d7139
...
...
@@ -135,11 +135,12 @@ class Users extends Model
*/
public
function
getClient
(
$id
)
{
if
(
$id
)
{
$data
=
$this
->
field
(
'a.user_nick,a.user_phone,a.sex,b.id as agents_id,b.name,b.phone'
)
->
alias
(
'a'
)
->
join
(
'a_agents b'
,
'a.agent_id=b.id'
,
'left'
)
$data
=
$this
->
field
(
'a.user_nick,a.user_phone,a.sex,a.agent_id,b.realname,b.phone'
)
->
alias
(
'a'
)
->
join
(
'agents b'
,
'a.agent_id=b.id'
,
'left'
)
->
where
(
'a.id'
,
$id
)
->
find
();
$data
[
'agents'
]
=
$data
[
'name'
]
.
'-'
.
$data
[
'phone'
];
unset
(
$data
[
'name'
]);
$data
[
'agents'
]
=
$data
[
'
real
name'
]
.
'-'
.
$data
[
'phone'
];
unset
(
$data
[
'
real
name'
]);
unset
(
$data
[
'phone'
]);
}
else
{
$data
=
false
;
...
...
application/route.php
View file @
759d7139
...
...
@@ -138,7 +138,7 @@ Route::group('index', [
'lable'
=>
[
'index/label/index'
,[
'method'
=>
'get'
]],
//标签列表
//数据统计
'RemarkFollowIndex'
=>
[
'index/remark/
R
emarkFollowIndex'
,[
'method'
=>
'get'
]],
//跟进列表主界面
'RemarkFollowIndex'
=>
[
'index/remark/
r
emarkFollowIndex'
,[
'method'
=>
'get'
]],
//跟进列表主界面
'RemarkFollowList'
=>
[
'index/remark/RemarkFollowList'
,[
'method'
=>
'get'
]],
//跟进列表【接口】
'phone_list'
=>
[
'index/Phone/index'
,[
'method'
=>
'get'
]],
//隐私号码列表
'bindPhoneList'
=>
[
'index/Phone/bindPhoneList'
,[
'method'
=>
'get'
]],
//绑定的隐私号码列表
...
...
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