Commit aa2e7a03 authored by xishifeng's avatar xishifeng

agent_detail增加

parent 7f874038
...@@ -26,6 +26,10 @@ class Index ...@@ -26,6 +26,10 @@ class Index
{ {
return view('index/share_detail'); return view('index/share_detail');
} }
public function agent_detail()
{
return view('index/agent_detail');
}
/** /**
* 楼盘详情 * 楼盘详情
* @return \think\Response * @return \think\Response
......
...@@ -42,6 +42,7 @@ Route::rule(['/city/:name' => 'error/index'] , '' ,'GET');*/ ...@@ -42,6 +42,7 @@ Route::rule(['/city/:name' => 'error/index'] , '' ,'GET');*/
Route::group('app', [ Route::group('app', [
'index' => [ 'app/index/index', [ 'method' => 'get' ] ], 'index' => [ 'app/index/index', [ 'method' => 'get' ] ],
'agent_detail' => [ 'app/index/agent_detail', [ 'method' => 'get' ] ],
'share_detail' => [ 'app/index/share_detail', [ 'method' => 'get' ] ], 'share_detail' => [ 'app/index/share_detail', [ 'method' => 'get' ] ],
'getShopDetails' => [ 'app/index/getShopDetail', [ 'method' => 'get | post' ] ], 'getShopDetails' => [ 'app/index/getShopDetail', [ 'method' => 'get | post' ] ],
]); ]);
......
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