交友相关

This commit is contained in:
2025-08-16 11:29:29 +08:00
parent f90a9d11df
commit 9566409a0c
5 changed files with 102 additions and 20 deletions

View File

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