...
|
...
|
@@ -208,7 +208,9 @@ class User extends Api |
|
|
$user = $this->auth->getUser();
|
|
|
$area = $this->request->param('area');
|
|
|
$keyword = $this->request->param('keyword');
|
|
|
$where = [];
|
|
|
$where = [
|
|
|
'status' => ['in',[1,2]]
|
|
|
];
|
|
|
if(!empty($area)){
|
|
|
$where['h.area'] = ['like',"%$area%"];
|
|
|
}
|
...
|
...
|
|