add active list to song list

This commit is contained in:
2023-11-20 14:47:38 +08:00
parent 7dcbc87436
commit 1d960c4927
3 changed files with 16 additions and 3 deletions

View File

@@ -661,6 +661,9 @@ async function updateActive() {
if (song.status != item.status) song.status = item.status
} else {
originSongs.value.unshift(item)
if (item.from == SongRequestFrom.Web) {
message.success(`[${item.user?.name}] 直接从网页歌单点歌: ${item.songName}`)
}
}
})
} else {