Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/debug16/LuoYiMusic
Browse files Browse the repository at this point in the history
  • Loading branch information
debug16 committed Jan 28, 2023
2 parents 646e7a3 + ad46d4e commit 4568b58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/artist/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const dblclickPlayMusic = (songs: any) => {
* 8: 低音质免费
* https://github.com/Binaryify/NeteaseCloudMusicApi/issues/1121
*/
if (isSongsFree(songs.privilege.fee)) {
if (isSongsFree(songs.fee)) {
// 设置播放的音乐 id
playMusicStore.setPlayMusicId(songs?.id)
Expand Down Expand Up @@ -140,7 +140,7 @@ const briefDesc = computed(() => {
rounded-xl
hover="bg-#eee/50"
:img-src="imgUrlSize(song.al?.picUrl, 100)"
:available="isSongsFree(song.privilege.fee)"
:available="isSongsFree(song.fee)"
:name="song?.name"
:artist="formatSongsSinger(song.ar)"
:active="song.id == playMusicStore.getPlayMusicId"
Expand Down

0 comments on commit 4568b58

Please sign in to comment.