房间用户列表

This commit is contained in:
2025-12-09 17:10:42 +08:00
parent 672a43a599
commit 78f7f5ff75

View File

@@ -1843,12 +1843,12 @@ class Room extends Model
if ($page != 1) { if ($page != 1) {
$lists['off_pit'][] = $v; $lists['off_pit'][] = $v;
} else { } else {
if ($v['is_onpit'] == 0) {//在麦位上的用户 if ($v['is_onpit'] == 1) {//bu在麦位上的用户
$lists['on_pit'][] = $v;
} else {
if($v['hide_status'] == 0){//非隐身用户 if($v['hide_status'] == 0){//非隐身用户
$lists['off_pit'][] = $v; $lists['off_pit'][] = $v;
} }
} else {
$lists['on_pit'][] = $v;
} }
} }
} }