Commit 7863a061 authored by agping's avatar agping

bug

parent e5f3e29d
...@@ -10,9 +10,14 @@ namespace app\index\controller; ...@@ -10,9 +10,14 @@ namespace app\index\controller;
use app\index\extend\Basic; use app\index\extend\Basic;
class HouseFollowUp extends Basic{ class HouseFollowUp extends Basic{
//在controller里新增的php文件名
public function followUpList(){ public function followUpList(){
//followUpList 方法
if (!$this->request->isAjax()) { if (!$this->request->isAjax()) {
return view('houses/HouseFollowUp'); return view('houses/HouseFollowUp');
//找到view下的 houses 文件夹下的 HouseFollowUp的html 文件
} }
} }
} }
...@@ -260,6 +260,7 @@ Route::group('index', [ ...@@ -260,6 +260,7 @@ Route::group('index', [
'agentEvaluateNumAndFraction' => [ 'index/agent/agentEvaluateNumAndFraction', [ 'method' => 'POST|GET' ] ],//经纪人列表计算-评价次数和分数 朱伟 2018-07-03 'agentEvaluateNumAndFraction' => [ 'index/agent/agentEvaluateNumAndFraction', [ 'method' => 'POST|GET' ] ],//经纪人列表计算-评价次数和分数 朱伟 2018-07-03
'uploadImg' => [ 'index/UploadImg/uploadImg', [ 'method' => 'POST' ] ],//全局图片上传 'uploadImg' => [ 'index/UploadImg/uploadImg', [ 'method' => 'POST' ] ],//全局图片上传
'followUpList' => [ 'index/HouseFollowUp/followUpList', [ 'method' => 'GET' ] ],//商铺跟进liu 'followUpList' => [ 'index/HouseFollowUp/followUpList', [ 'method' => 'GET' ] ],//商铺跟进liu
//页面链接的地址 index 下的 控制器HouseFollowUp 中方法名为followUpList
'inspectionRecordList' => [ 'index/InspectionRecord/inspectionRecordList', [ 'method' => 'GET' ] ],//约带看记录liu 'inspectionRecordList' => [ 'index/InspectionRecord/inspectionRecordList', [ 'method' => 'GET' ] ],//约带看记录liu
......
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