挚友列表
This commit is contained in:
@@ -295,4 +295,15 @@ class User extends BaseCom
|
||||
$reslut = model('User')->get_friend_list($user_id, $page, $page_limit);
|
||||
return V($reslut['code'], $reslut['msg'], $reslut['data']);
|
||||
}
|
||||
|
||||
|
||||
//挚友列表查看更多
|
||||
public function get_friend_list_more()
|
||||
{
|
||||
$user_id = input('user_id', 0);//用户id
|
||||
$page = input('page', 1);
|
||||
$page_limit = input('page_limit', 30);
|
||||
$reslut = model('User')->get_friend_list_more($user_id, $page, $page_limit);
|
||||
return V($reslut['code'], $reslut['msg'], $reslut['data']);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user