签约房 上麦 抱麦 收礼涨身价

This commit is contained in:
2025-11-25 17:10:19 +08:00
parent aebef67454
commit 5618d9e80c
4 changed files with 98 additions and 8 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-点唱10-签约
$reslut = model('Room')->change_room_type($this->uid, $room_id, $type);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}