点唱房

This commit is contained in:
2025-11-12 17:58:36 +08:00
parent e16137c2a0
commit 49581504c3
2 changed files with 2 additions and 2 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-拍卖7-互娱8-交友9-点唱
$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']);
}

View File

@@ -1729,7 +1729,7 @@ class Room extends Model
//修改房间类型
// $type 1-聊天,2-拍卖7-互娱8-交友9-点唱
// $type //1-交友,2-拍卖7-互娱8-交友(不要了)9-点唱
public function change_room_type($uid,$room_id,$type)
{
if(!$uid || !$room_id || !$type){