This commit is contained in:
2025-11-12 19:39:23 +08:00
parent 06508ca830
commit 2c5d80dc45
2 changed files with 61 additions and 0 deletions

View File

@@ -114,4 +114,18 @@ class SingerSong extends BaseCom
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
//点歌列表
public function singerSongList()
{
$room_id = input('room_id', 0);
if (!$room_id) {
return V(0, '请选择房间');
}
$type = input('type', 1);//1:已点列表2:今日列表3昨日列表4本周列表5本月列表
$reslut = model('SingerSong')->singerSongList($room_id,$type);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
}