Commit bf0a0ee7 authored by hujun's avatar hujun

all

parent bf6c1b3e
...@@ -35,8 +35,11 @@ class District extends Basic ...@@ -35,8 +35,11 @@ class District extends Basic
$pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo']; $pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo'];
$pageSize = empty($this->params['pageSize']) ? 10 : $this->params['pageSize']; $pageSize = empty($this->params['pageSize']) ? 10 : $this->params['pageSize'];
$agents = new ADistrict(); $agents = new ADistrict();
$where = '';
if ($this->userId != 1) {
$where = 'a.site_id='.$this->siteId;
}
$where = 'a.site_id='.$this->siteId;
$join = 0; $join = 0;
$field = ''; $field = '';
......
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