qifengquan 1 anno fa
parent
commit
13cf18aaca
1 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. 7 1
      application/api/controller/Index.php

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

@@ -234,18 +234,24 @@ class Index extends Api
      */
     public function recommend(){
         $uid = $this->auth->id;
+
         $city = $this->request->post('city');
         if($this->auth->gender){
             $gender = 0;
         }else{
             $gender = 1;
         }
-        //屏蔽用户
+        //屏蔽用户
         $shield = Shield::where(['uid'=>$uid])->field('nid')->select();
         $shieldArr = [];
         foreach ($shield as $v){
             array_push($shieldArr,$v['nid']);
         }
+        //屏蔽我的用户
+        $shield1 = Shield::where(['nid'=>$uid])->field('uid')->select();
+        foreach ($shield1 as $v){
+            array_push($shieldArr,$v['uid']);
+        }
         $where = [
             'gender'=>input('gender',$gender),
             'is_recommend'=>1,