From cb7703ecbb8b5a8a3a316bac40651f6a9ed99c4d Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sun, 16 Jan 2022 13:54:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=8E=E7=BD=91=E9=A1=B5?= =?UTF-8?q?=E6=89=93=E5=BC=80=E6=AD=8C=E5=8D=95=E6=97=B6=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=94=B6=E8=97=8F=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/views/songList/SongList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/views/songList/SongList.vue b/src/renderer/views/songList/SongList.vue index 77ca7caa..1350566e 100644 --- a/src/renderer/views/songList/SongList.vue +++ b/src/renderer/views/songList/SongList.vue @@ -281,7 +281,7 @@ export default { name: '', img: null, desc: '', - source: this.source, + source, }) this.setVisibleListDetail(true) this.handleGetListDetail(id, source, 1) @@ -299,7 +299,7 @@ export default { }, async fetchList() { this.detailLoading = true - return this.getListDetailAll({ source: this.source, id: this.selectListInfo.id }).finally(() => { + return this.getListDetailAll({ source: this.listDetail.source, id: this.listDetail.id }).finally(() => { this.detailLoading = false }) },