This commit is contained in:
2025-11-17 10:08:12 +08:00
parent 808a61060c
commit 722aaf5834
2 changed files with 58 additions and 0 deletions

View File

@@ -161,4 +161,17 @@ class SingerSong extends BaseCom
}
//切歌
public function singerSongCut()
{
$id = input('id', 0);//点歌列表的ID
if (!$id) {
return V(0, '请选择要切的歌曲列表ID');
}
$reslut = model('SingerSong')->singerSongCut($this->uid, $id);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
}