From 726d7dd139c982f6d2186bc00c1f691f42edc429 Mon Sep 17 00:00:00 2001 From: zhangda <221830074@smail.nju.edu.cn> Date: Sun, 22 Dec 2024 12:08:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B0=8Fbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MusicAlbumView.vue | 32 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/src/components/MusicAlbumView.vue b/src/components/MusicAlbumView.vue index c964d6c..68b9187 100644 --- a/src/components/MusicAlbumView.vue +++ b/src/components/MusicAlbumView.vue @@ -210,21 +210,21 @@ const playFromId = (musicId) => { } const addToFavorite = (musicId, albumId) => { - addSongToPlaylist({ - user_id: currentUserId.value, - playlist_id: albumId, - song_id: musicId, - }).then(() => { - ElMessage({ - message: "娣诲姞鑷�: " + props.albumInfo.title, - grouping: true, - type: 'info', - offset: 16, - customClass: "reco-message", - duration: 4000, - }) - }) - + addSongToPlaylist({ + user_id: currentUserId.value, + playlist_id: albumId, + song_id: musicId, + }).then(() => { + ElMessage({ + message: "娣诲姞鑷�: " + props.albumInfo.title, + grouping: true, + type: 'info', + offset: 16, + customClass: "reco-message", + duration: 4000, + }) + }) +} watch(() => props.isPaused, (newValue) => { if (newValue) { musicPauseIndex = musicPlayIndex; @@ -233,8 +233,6 @@ watch(() => props.isPaused, (newValue) => { } }); -const addToFavorite = (musicId) => { -} const removeMusicFromAlbum = (albumId, songId) => { removeSongFromPlaylist({ playlist_id: albumId, -- GitLab