|
@@ -6,6 +6,7 @@ use app\admin\model\policy\Type;
|
|
use app\common\controller\Api;
|
|
use app\common\controller\Api;
|
|
use app\common\model\Activity;
|
|
use app\common\model\Activity;
|
|
use app\common\model\City;
|
|
use app\common\model\City;
|
|
|
|
+use app\common\model\CommunityModel;
|
|
use app\common\model\Message;
|
|
use app\common\model\Message;
|
|
use app\common\model\Park;
|
|
use app\common\model\Park;
|
|
use app\common\model\Protable;
|
|
use app\common\model\Protable;
|
|
@@ -16,7 +17,7 @@ use think\Db;
|
|
*/
|
|
*/
|
|
class Index extends Api
|
|
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 = ['*'];
|
|
protected $noNeedRight = ['*'];
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -29,6 +30,40 @@ class Index extends Api
|
|
$data['activity'] = Activity::where('index_show',1)->where('switch',1)->order('sort desc')->find();
|
|
$data['activity'] = Activity::where('index_show',1)->where('switch',1)->order('sort desc')->find();
|
|
$this->success('请求成功',$data);
|
|
$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]);
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 轮播图
|
|
* 轮播图
|
|
*
|
|
*
|