diff --git a/app/api/controller/Article.php b/app/api/controller/Article.php index 1755e7c..316da53 100644 --- a/app/api/controller/Article.php +++ b/app/api/controller/Article.php @@ -652,6 +652,7 @@ class Article extends BaseController //根据个人id进行查询 $where[] = ['a.user_id','=',JWT_UID]; $where[] = ['b.is_read','=','0']; + $which = []; //根据个人村id进行查询 if (JWT_UID) { $find = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->find(); @@ -664,6 +665,7 @@ class Article extends BaseController $www[] = ['a.county', '=', $find['area_id']]; } } + $which['user_id'] = JWT_UID; } $yishi = Db::table('fa_article')->alias('a')->join(['fa_article_vote_side_tables' => 'b'],'a.id=b.article_id')->where($www)->where('a.category_id',162)->whereTime('b.end_time', '>', date('Y-m-d H:i:s'))->count(); $maodun = Db::table('fa_article')->alias('a')->join(['fa_article_comment' => 'b'],'a.id=b.vote_id')->where('a.is_solve', 1)->where($where)->where('a.category_id',147)->count(); @@ -671,7 +673,7 @@ class Article extends BaseController $saohei = Db::table('fa_article')->alias('a')->join(['fa_article_comment' => 'b'],'a.id=b.vote_id')->where('a.is_solve', 1)->where($where)->where('a.category_id', 149)->count(); $sos = Db::table('fa_article')->alias('a')->join(['fa_article_comment' => 'b'],'a.id=b.vote_id')->where('a.is_solve', 1)->where($where)->where('a.category_id', 150)->count(); $one_shuqiu = Db::table('fa_article')->alias('a')->join(['fa_article_comment' => 'b'],'a.id=b.vote_id')->where('a.is_solve', 1)->where($where)->where('a.category_id', 165)->count(); - $notice = Db::table('cms_notice')->where('status',1)->where('is_read',0)->count(); + $notice = Db::table('cms_notice')->where('status',1)->where($which)->where('is_read',0)->count(); $select = [ 'yishi' => $yishi, 'maodun' => $maodun,