chenhao 4 年之前
父节点
当前提交
81311c9bf4

+ 36 - 1
application/api/controller/Index.php

@@ -6,6 +6,7 @@ use app\admin\model\policy\Type;
 use app\common\controller\Api;
 use app\common\model\Activity;
 use app\common\model\City;
+use app\common\model\CommunityModel;
 use app\common\model\Message;
 use app\common\model\Park;
 use app\common\model\Protable;
@@ -16,7 +17,7 @@ use think\Db;
  */
 class Index extends Api
 {
-    protected $noNeedLogin = ['index','banner','notice','gg','parkMessage','activity','protable','protableInfo','NoticeInfo','GgInfo'];
+    protected $noNeedLogin = ['index','banner','notice','gg','parkMessage','activity','protable','protableInfo','NoticeInfo','GgInfo','message'];
     protected $noNeedRight = ['*'];
 
     /**
@@ -29,6 +30,40 @@ class Index extends Api
         $data['activity'] = Activity::where('index_show',1)->where('switch',1)->order('sort desc')->find();
         $this->success('请求成功',$data);
     }
+
+    /**
+     * 消息判断
+     */
+    public function message()
+    {
+        $user = $this->auth->getUser();
+
+        $status = 0;
+
+        if (!$user) return $this->success('',['status'=>0]);
+
+        $userCommunity = CommunityModel::where('uid',$user['id'])->column('id');
+
+        $str = implode(',',$userCommunity);
+
+        $comment = Db::name('community_comment')
+            ->where('c_id',"in",$str)
+            ->order('create_time desc')->select();
+
+        if (!empty($comment)) {
+            foreach ($comment as $k=>$v) {
+                if (strtotime($v['create_time']) > $user['see_message_time']) $status = 1;
+            }
+        }
+
+        $data = Db::name('admin_message')->order('create_time desc')->select();
+
+        foreach ($data as $m=>$n) {
+            if (strtotime($n['create_time'])>$user['see_message_time']) $status;
+        }
+
+        return $this->success('',['status'=>$status]);
+    }
     /**
      * 轮播图
      *

+ 3 - 1
application/api/controller/Message.php

@@ -51,7 +51,7 @@ class Message extends Api
                 ->find();
 
         }
-
+        Db::name('user')->where('id',$user['id'])->update(['see_message_time'=>time()]);
         return json(['code'=>1,'data'=>$comment]);
     }
 
@@ -140,6 +140,7 @@ class Message extends Api
      */
     public function pingtai()
     {
+        $user = $this->auth->getUser();
 
         $page = $this->request->get('page');
 
@@ -155,6 +156,7 @@ class Message extends Api
 
         $data = Db::name('admin_message')->limit($pages)->order('create_time desc')->select();
 
+        Db::name('user')->where('id',$user['id'])->update(['see_message_time'=>time()]);
         return $this->success('',$data);
     }
 }

+ 13 - 0
application/api/controller/MyActivity.php

@@ -683,6 +683,18 @@ class MyActivity extends Api
      */
     public function yaoqing()
     {
+
+
+        $page = $this->request->get('page');
+
+        $limit = $this->request->get('limit');
+        if (!$page) {
+            $pages = '0,10';
+        } else {
+            $page = $page - 1;
+            if ($page < 0) $page = 0;
+            $pages = $page . ',' . $limit;
+        }
         $a_id = $this->request->get('a_id');
 
         $user = $this->auth->getUser();
@@ -690,6 +702,7 @@ class MyActivity extends Api
         $beUid = Db::name('fenxiang')
             ->where('a_id',$a_id)
             ->where('u_id',$user['id'])
+            ->limit($pages)
             ->column('be_uid');
         $str = implode(',',$beUid);