chenhao 4 years ago
parent
commit
2c96ed7d2a
2 changed files with 6 additions and 2 deletions
  1. 1 1
      application/api/controller/Index.php
  2. 5 1
      application/api/controller/MyActivity.php

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

@@ -59,7 +59,7 @@ class Index extends Api
         $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;
+            if (strtotime($n['create_time'])>$user['see_message_time']) $status=1;
         }
 
         return $this->success('',['status'=>$status]);

+ 5 - 1
application/api/controller/MyActivity.php

@@ -706,7 +706,11 @@ class MyActivity extends Api
             ->column('be_uid');
         $str = implode(',',$beUid);
 
-        $users = Db::name('user')->where('id','in',$str)->where('status',1)->field('id,username,avatar')->select();
+        $users = Db::name('user')
+            ->where('id','in',$str)
+            ->where('status',1)
+            ->field('id,username,avatar,mobile')
+            ->select();
 
         return json(['code' => 1, 'data'=>$users]);
     }