From b0e2f44f011af13edc144a713caace5dacffd26c Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sat, 11 Dec 2021 15:32:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=AD=8C=E6=9B=B2=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E5=A4=9A=E9=80=89=E4=B8=8D=E5=87=86=E7=A1=AE=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 1 + src/renderer/store/modules/player.js | 2 +- src/renderer/views/Search.vue | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/publish/changeLog.md b/publish/changeLog.md index ab927572..7f7fc9bf 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -5,6 +5,7 @@ - 新增将我的列表保存为TXT、CSV格式,可以去设置-备份与恢复中使用(注意:此类格式的备份目前不支持恢复到LX Music中) - 新增根据歌曲名、歌手名等字段对列表自动排序的功能,可以在我的列表右击列表名弹出的菜单中使用 - 新增将播放与下载的歌词转换为繁体中文选项,默认关闭,可在设置-播放设置中开启 +- 现在已允许进入临时播放列表,即:使用歌单详情页、排行榜名称右键菜单的“播放”按钮播放歌曲时,可右击播放封面进入此临时列表 ### 优化 diff --git a/src/renderer/store/modules/player.js b/src/renderer/store/modules/player.js index aac3d6af..3234dee4 100644 --- a/src/renderer/store/modules/player.js +++ b/src/renderer/store/modules/player.js @@ -285,7 +285,7 @@ const actions = { return } - console.log(playInfo.playListId) + // console.log(playInfo.playListId) const currentListId = playInfo.playListId const currentList = getList(currentListId) diff --git a/src/renderer/views/Search.vue b/src/renderer/views/Search.vue index 4777a4f1..315b075e 100644 --- a/src/renderer/views/Search.vue +++ b/src/renderer/views/Search.vue @@ -315,7 +315,7 @@ export default { } this.selectedData = this.listInfo.list.slice(lastSelectIndex, clickIndex + 1) if (isNeedReverse) this.selectedData.reverse() - let nodes = this.$refs.dom_tbody.childNodes + let nodes = Array.from(this.$refs.dom_tbody.childNodes).filter(n => n.nodeType === 1) do { const node = nodes[lastSelectIndex] if (node.tagName == 'TR') {