|
@@ -492,6 +492,7 @@ class ElectPool Extends Model
|
|
$touser['apply_state'] = false;
|
|
$touser['apply_state'] = false;
|
|
$touser['star_switch'] = false;
|
|
$touser['star_switch'] = false;
|
|
$touser['star'] = false;
|
|
$touser['star'] = false;
|
|
|
|
+ $touser['is_pay'] = false;
|
|
}else{
|
|
}else{
|
|
//查看我是否已经喜欢过
|
|
//查看我是否已经喜欢过
|
|
$want_know = UserWantKnow::where('user_id',$user['id'])->where('to_user_id',$user_id)->count();
|
|
$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;
|
|
$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();
|
|
$star = UserStar::where('user_id',$user['id'])->where('to_user_id',$user_id)->count();
|
|
$touser['star_switch'] = $star > 0 ? true : false;
|
|
$touser['star_switch'] = $star > 0 ? true : false;
|