Commit 6fa18eae authored by hujun's avatar hujun

通话列表

parent 2a5303bf
<?php <?php
/** /**
* Created by PhpStorm. * Created by PhpStorm.
* User: 43897 * User: hu jun
* Date: 2018/2/12 * Date: 2018/2/12
* Time: 14:14 * Time: 14:14
*/ */
...@@ -22,6 +22,24 @@ class CellPhone extends Basic ...@@ -22,6 +22,24 @@ class CellPhone extends Basic
protected $data = []; protected $data = [];
protected $msg = ""; 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');
}
/** /**
* 绑定手机号 * 绑定手机号
* 解绑之后有延迟 * 解绑之后有延迟
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
...@@ -70,6 +70,12 @@ ...@@ -70,6 +70,12 @@
<li role="presentation"> <li role="presentation">
<a href="/admin.php/index/BusinessDistrict.html">商圈列表</a> <a href="/admin.php/index/BusinessDistrict.html">商圈列表</a>
</li> </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> </ul>
</nav> </nav>
......
...@@ -148,6 +148,8 @@ Route::group('index', [ ...@@ -148,6 +148,8 @@ Route::group('index', [
'bindAXB' => [ 'index/CellPhone/bindAXB', [ 'method' => 'post' ] ],//隐私号码 'bindAXB' => [ 'index/CellPhone/bindAXB', [ 'method' => 'post' ] ],//隐私号码
'agentsUnBind' => [ 'index/CellPhone/agentsUnBind', [ 'method' => 'post' ] ],//解除绑定关系 'agentsUnBind' => [ 'index/CellPhone/agentsUnBind', [ 'method' => 'post' ] ],//解除绑定关系
'updateBindAXB' => ['api_broker/CellPhone/updateBindAXB', [ 'method' => 'post' ] ], //更新绑定关系隐私号码 'updateBindAXB' => ['api_broker/CellPhone/updateBindAXB', [ 'method' => 'post' ] ], //更新绑定关系隐私号码
'CellPhoneIndex' => ['index/CellPhone/index', [ 'method' => 'get' ] ], //总记录列表
'CellPhoneAgentIndex' => ['index/CellPhone/agentIndex', [ '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