我创建的房间 过滤

This commit is contained in:
2025-09-23 19:51:00 +08:00
parent 08ab3d18a1
commit 09b3452795

View File

@@ -272,7 +272,7 @@ class Room extends Model
$roomInfo = db::name('vs_room')
->field('id as room_id,room_number,user_id,room_name,room_cover,apply_status,type_id,room_status,label_id')
->where('user_id' , $uid)
->where(['type_id' => ['<>',6],'room_status' =>1,'apply_status' => 2])
->where(['type_id' => ['<>',6],'room_status' =>1,'apply_status' => ['<>',3]])
->page($page, $page_limit)
->select();
}