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
6fa18eae
Commit
6fa18eae
authored
Mar 01, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
通话列表
parent
2a5303bf
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
1 deletion
+49
-1
CellPhone.php
application/index/controller/CellPhone.php
+19
-1
agentIndex.html
application/index/view/cell_phone/agentIndex.html
+11
-0
index.html
application/index/view/cell_phone/index.html
+11
-0
navigation.html
application/index/view/global/navigation.html
+6
-0
route.php
application/route.php
+2
-0
No files found.
application/index/controller/CellPhone.php
View file @
6fa18eae
<?php
/**
* Created by PhpStorm.
* User:
43897
* User:
hu jun
* Date: 2018/2/12
* Time: 14:14
*/
...
...
@@ -22,6 +22,24 @@ class CellPhone extends Basic
protected
$data
=
[];
protected
$msg
=
""
;
/**
* 总记录列表
*
* @return \think\response\View
*/
public
function
index
()
{
return
view
(
'cell_phone/index'
);
}
/**
* 经纪人通话列表
*
* @return \think\response\View
*/
public
function
agentIndex
()
{
return
view
(
'cell_phone/agentIndex'
);
}
/**
* 绑定手机号
* 解绑之后有延迟
...
...
application/index/view/cell_phone/agentIndex.html
0 → 100644
View file @
6fa18eae
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
application/index/view/cell_phone/index.html
0 → 100644
View file @
6fa18eae
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
application/index/view/global/navigation.html
View file @
6fa18eae
...
...
@@ -70,6 +70,12 @@
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/BusinessDistrict.html"
>
商圈列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/CellPhoneIndex.html"
>
总记录列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/CellPhoneAgentIndex.html"
>
经纪人通话列表
</a>
</li>
</ul>
</nav>
...
...
application/route.php
View file @
6fa18eae
...
...
@@ -148,6 +148,8 @@ Route::group('index', [
'bindAXB'
=>
[
'index/CellPhone/bindAXB'
,
[
'method'
=>
'post'
]
],
//隐私号码
'agentsUnBind'
=>
[
'index/CellPhone/agentsUnBind'
,
[
'method'
=>
'post'
]
],
//解除绑定关系
'updateBindAXB'
=>
[
'api_broker/CellPhone/updateBindAXB'
,
[
'method'
=>
'post'
]
],
//更新绑定关系隐私号码
'CellPhoneIndex'
=>
[
'index/CellPhone/index'
,
[
'method'
=>
'get'
]
],
//总记录列表
'CellPhoneAgentIndex'
=>
[
'index/CellPhone/agentIndex'
,
[
'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