K歌房 点歌限制和点歌搜索

This commit is contained in:
2026-01-12 14:43:28 +08:00
parent 64d0812adb
commit bc0f052359
2 changed files with 46 additions and 0 deletions

View File

@@ -58,6 +58,15 @@ class RoomSong extends BaseCom
}
//已点列表搜索
public function search_song(){
$room_id = input('room_id');
$search_user = input('search_user');
$res = model('RoomSong')->search_song($room_id,$search_user);
return V($res['code'], $res['msg'], $res['data']);
}
//上移歌 $type 1上移 2置顶
public function up_song(){
$room_song_id = input('did');