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
572edda2
Commit
572edda2
authored
Mar 01, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
后台号码列表
parent
d3f6a5d4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
0 deletions
+29
-0
Phone.php
application/index/controller/Phone.php
+17
-0
navigation.html
application/index/view/global/navigation.html
+6
-0
bindPhoneList.html
application/index/view/phone/bindPhoneList.html
+2
-0
phone_list.html
application/index/view/phone/phone_list.html
+2
-0
route.php
application/route.php
+2
-0
No files found.
application/index/controller/Phone.php
View file @
572edda2
...
...
@@ -13,6 +13,23 @@ use app\index\extend\Basic;
use
app\model\AliYunPhone
;
class
Phone
extends
Basic
{
/**
* 号码池
*
* @return \think\response\View
*/
public
function
phoneList
()
{
return
view
(
'phone/phone_list'
);
}
/**
* 号码绑定列表
*
* @return \think\response\View3
*/
public
function
bindPhoneListIndex
()
{
return
view
(
'phone/bindPhoneList'
);
}
/**
* 号码池列表
*
...
...
application/index/view/global/navigation.html
View file @
572edda2
...
...
@@ -76,6 +76,12 @@
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/CellPhoneAgentIndex.html"
>
经纪人通话列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/phoneList.html"
>
号码池列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/bindPhoneListIndex.html"
>
号码绑定列表
</a>
</li>
</ul>
</nav>
...
...
application/index/view/phone/bindPhoneList.html
0 → 100644
View file @
572edda2
号码绑定列表
\ No newline at end of file
application/index/view/phone/phone_list.html
0 → 100644
View file @
572edda2
号码池
\ No newline at end of file
application/route.php
View file @
572edda2
...
...
@@ -154,6 +154,8 @@ Route::group('index', [
'updateBindAXB'
=>
[
'api_broker/CellPhone/updateBindAXB'
,
[
'method'
=>
'post'
]
],
//更新绑定关系隐私号码
'CellPhoneIndex'
=>
[
'index/CellPhone/index'
,
[
'method'
=>
'get'
]
],
//总记录列表
'CellPhoneAgentIndex'
=>
[
'index/CellPhone/agentIndex'
,
[
'method'
=>
'get'
]
],
//经纪人通话列表
'phoneList'
=>
[
'index/Phone/phoneList'
,
[
'method'
=>
'get'
]
],
//号码池
'bindPhoneListIndex'
=>
[
'index/Phone/bindPhoneListIndex'
,
[
'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