diff --git a/app/api/controller/Village.php b/app/api/controller/Village.php index ddb41e2..e2278c7 100644 --- a/app/api/controller/Village.php +++ b/app/api/controller/Village.php @@ -43,6 +43,7 @@ class Village extends BaseController $where['status'] = 1; $list = Db::table('fa_szxc_village') ->where($where) + ->where('village_id','<>',0) ->page($page,10) ->field('id,title,address,people_num,images,views,likes,createtime,area_id,street_id,village_id') ->order('likes desc') @@ -84,8 +85,10 @@ class Village extends BaseController { $where['status'] = 1; + $list = Db::table('fa_szxc_village') ->where($where) + ->where('village_id','<>',0) ->page($page,$limit) ->field('id,title,address,people_num,images,views,likes,createtime,area_id,street_id,village_id') ->order('likes desc') @@ -239,6 +242,7 @@ class Village extends BaseController $where[] = ['address', 'like', '%'.$keyword.'%']; $list = Db::table('fa_szxc_village') ->where($where) + ->where('village_id','<>',0) ->field('id,title,address,people_num,images,views,likes,createtime') ->order('likes desc') ->withAttr('images', function ($value, $data) {