|
@@ -74,8 +74,11 @@ class Userfollow extends Api
|
|
|
->alias('follow')
|
|
|
->join('user','follow.uid = user.id','LEFT')
|
|
|
->join('user_wallet uw','user.id = uw.user_id','LEFT')
|
|
|
+ ->join('user_power power','user.id = power.user_id','LEFT')
|
|
|
->field('user.id,user.username,user.nickname,user.avatar,user.bio,user.birthday,user.gender,user.attribute,uw.vip_endtime')
|
|
|
- ->where('follow.follow_uid',$user_id)->order('follow.id desc')->autopage()->select();
|
|
|
+ ->where('follow.follow_uid',$user_id)
|
|
|
+ ->where('power.yinsi',0)
|
|
|
+ ->order('follow.id desc')->autopage()->select();
|
|
|
|
|
|
$list = list_domain_image($list,['avatar']);
|
|
|
$list = list_birthday_age($list);
|