点唱房

This commit is contained in:
2025-11-12 17:10:17 +08:00
parent 3aef38f4fc
commit 2de7412550
6 changed files with 219 additions and 5 deletions

View File

@@ -266,7 +266,7 @@ class Room extends BaseCom
public function change_room_type()
{
$room_id = input('room_id', 0);
$type = input('type', 1);//1-点唱,2-拍卖,3-男神4-女神,7-交友
$type = input('type', 1);//1-聊天,2-拍卖,7-互娱8-交友9-点唱
$reslut = model('Room')->change_room_type($this->uid, $room_id, $type);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}