Commit bb7ec675 authored by hujun's avatar hujun

总监列表页面

parent 7ece97e0
...@@ -197,4 +197,11 @@ class Broker extends Basic ...@@ -197,4 +197,11 @@ class Broker extends Basic
$this->data = $agents->getListDistrict($pageNo, $pageSize, 'id DESC', $field, $where); $this->data = $agents->getListDistrict($pageNo, $pageSize, 'id DESC', $field, $where);
return $this->response($this->code, $this->msg, $this->data); return $this->response($this->code, $this->msg, $this->data);
} }
/**
* 总监列表页面
*/
public function districtList() {
return view('agent/district');
}
} }
\ 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
...@@ -124,6 +124,7 @@ Route::group('index', [ ...@@ -124,6 +124,7 @@ Route::group('index', [
'getExclusive' => ['index/houses/getExclusive', ['method' => 'get']], //获取楼盘独家 'getExclusive' => ['index/houses/getExclusive', ['method' => 'get']], //获取楼盘独家
'getRecords' => ['index/houses/getRecords',['method'=>'get']], //操作记录 'getRecords' => ['index/houses/getRecords',['method'=>'get']], //操作记录
'getDistrictList' => ['index/broker/getDistrictList',['method'=>'get']], //总监列表 'getDistrictList' => ['index/broker/getDistrictList',['method'=>'get']], //总监列表
'districtList' => ['index/broker/districtList',['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