songxingwei 3 년 전
부모
커밋
2a9389293c
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      application/common/model/ElectPool.php

+ 9 - 0
application/common/model/ElectPool.php

@@ -492,6 +492,7 @@ class ElectPool Extends Model
             $touser['apply_state'] = false;
             $touser['star_switch'] = false;
             $touser['star'] = false;
+            $touser['is_pay'] = false;
         }else{
             //查看我是否已经喜欢过
             $want_know = UserWantKnow::where('user_id',$user['id'])->where('to_user_id',$user_id)->count();
@@ -521,6 +522,14 @@ class ElectPool Extends Model
                 $touser['apply_state'] = true;
             }
 
+            //查看是否已经支付
+            $is_pay = UserPay::where('user_id',$user['id'])->where('to_user_id',$user_id)->count();
+            if (!$is_pay){
+                $touser['is_pay'] = false;
+            }else{
+                $touser['is_pay'] = true;
+            }
+
             //星标开关
             $star = UserStar::where('user_id',$user['id'])->where('to_user_id',$user_id)->count();
             $touser['star_switch'] = $star > 0 ? true : false;