房间用户列表

This commit is contained in:
2025-12-09 16:47:58 +08:00
parent 1ca65ed7ba
commit 2d55d2cbf8
4 changed files with 84 additions and 12 deletions

View File

@@ -215,7 +215,7 @@ class Room extends BaseCom
{
$room_id = input('room_id', 0);
$page = input('page', 1);
$limit = input('limit', 50);
$limit = input('limit', 15);
$reslut = model('Room')->room_online_list($room_id, $page, $limit);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
@@ -425,16 +425,6 @@ class Room extends BaseCom
}
//房间在线列表
public function room_online_list_ceshi()
{
$room_id = input('room_id', 0);
$page = input('page', 1);
$limit = input('limit', 50);
$reslut = model('Room')->room_online_list($room_id, $page, $limit);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
//房间用户当前魅力值列表
public function room_user_charm_list()
{