Commit 572edda2 authored by hujun's avatar hujun

后台号码列表

parent d3f6a5d4
...@@ -13,6 +13,23 @@ use app\index\extend\Basic; ...@@ -13,6 +13,23 @@ use app\index\extend\Basic;
use app\model\AliYunPhone; use app\model\AliYunPhone;
class Phone extends Basic 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');
}
/** /**
* 号码池列表 * 号码池列表
* *
......
...@@ -76,6 +76,12 @@ ...@@ -76,6 +76,12 @@
<li role="presentation"> <li role="presentation">
<a href="/admin.php/index/CellPhoneAgentIndex.html">经纪人通话列表</a> <a href="/admin.php/index/CellPhoneAgentIndex.html">经纪人通话列表</a>
</li> </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> </ul>
</nav> </nav>
......
号码绑定列表
\ No newline at end of file
号码池
\ No newline at end of file
...@@ -154,6 +154,8 @@ Route::group('index', [ ...@@ -154,6 +154,8 @@ Route::group('index', [
'updateBindAXB' => ['api_broker/CellPhone/updateBindAXB', [ 'method' => 'post' ] ], //更新绑定关系隐私号码 'updateBindAXB' => ['api_broker/CellPhone/updateBindAXB', [ 'method' => 'post' ] ], //更新绑定关系隐私号码
'CellPhoneIndex' => ['index/CellPhone/index', [ 'method' => 'get' ] ], //总记录列表 'CellPhoneIndex' => ['index/CellPhone/index', [ 'method' => 'get' ] ], //总记录列表
'CellPhoneAgentIndex' => ['index/CellPhone/agentIndex', [ 'method' => 'get' ] ], //经纪人通话列表 'CellPhoneAgentIndex' => ['index/CellPhone/agentIndex', [ 'method' => 'get' ] ], //经纪人通话列表
'phoneList' => ['index/Phone/phoneList', [ 'method' => 'get' ] ], //号码池
'bindPhoneListIndex' => ['index/Phone/bindPhoneListIndex', [ 'method' => 'get' ] ], //号码绑定列表
]); ]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment