|
@@ -23,7 +23,7 @@ class UserLike extends Model
|
|
|
$where = [];
|
|
|
$where["a.fans_id"] = $user_id;
|
|
|
$list = $this->alias("a")
|
|
|
- ->field("a.id,a.user_id,a.fans_id,u.nickname,u.avatar,u.age,u.constellation,u.wechat,hobby_ids,profession")
|
|
|
+ ->field("a.id,a.user_id,a.fans_id,u.nickname,u.avatar,u.age,u.constellation,u.wechat,hobby_ids,profession,u.copy_mobile,u.mobile")
|
|
|
->join("hx_user u","u.id = a.user_id","left")
|
|
|
->where($where)
|
|
|
->limit($pageStart,$pageNum)
|
|
@@ -45,7 +45,7 @@ class UserLike extends Model
|
|
|
$where = [];
|
|
|
$where["a.user_id"] = $user_id;
|
|
|
$list = $this->alias("a")
|
|
|
- ->field("a.id,a.fans_id as user_id,u.nickname,u.avatar,u.age,u.constellation,hobby_ids,profession")
|
|
|
+ ->field("a.id,a.fans_id as user_id,u.nickname,u.avatar,u.age,u.constellation,hobby_ids,profession,u.copy_mobile,u.mobile")
|
|
|
->join("hx_user u","u.id = a.fans_id","left")
|
|
|
->where($where)
|
|
|
->limit($pageStart,$pageNum)
|