修复歌曲搜索多选不准确的问题
parent
442e633800
commit
b0e2f44f01
|
@ -5,6 +5,7 @@
|
||||||
- 新增将我的列表保存为TXT、CSV格式,可以去设置-备份与恢复中使用(注意:此类格式的备份目前不支持恢复到LX Music中)
|
- 新增将我的列表保存为TXT、CSV格式,可以去设置-备份与恢复中使用(注意:此类格式的备份目前不支持恢复到LX Music中)
|
||||||
- 新增根据歌曲名、歌手名等字段对列表自动排序的功能,可以在我的列表右击列表名弹出的菜单中使用
|
- 新增根据歌曲名、歌手名等字段对列表自动排序的功能,可以在我的列表右击列表名弹出的菜单中使用
|
||||||
- 新增将播放与下载的歌词转换为繁体中文选项,默认关闭,可在设置-播放设置中开启
|
- 新增将播放与下载的歌词转换为繁体中文选项,默认关闭,可在设置-播放设置中开启
|
||||||
|
- 现在已允许进入临时播放列表,即:使用歌单详情页、排行榜名称右键菜单的“播放”按钮播放歌曲时,可右击播放封面进入此临时列表
|
||||||
|
|
||||||
### 优化
|
### 优化
|
||||||
|
|
||||||
|
|
|
@ -285,7 +285,7 @@ const actions = {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(playInfo.playListId)
|
// console.log(playInfo.playListId)
|
||||||
const currentListId = playInfo.playListId
|
const currentListId = playInfo.playListId
|
||||||
const currentList = getList(currentListId)
|
const currentList = getList(currentListId)
|
||||||
|
|
||||||
|
|
|
@ -315,7 +315,7 @@ export default {
|
||||||
}
|
}
|
||||||
this.selectedData = this.listInfo.list.slice(lastSelectIndex, clickIndex + 1)
|
this.selectedData = this.listInfo.list.slice(lastSelectIndex, clickIndex + 1)
|
||||||
if (isNeedReverse) this.selectedData.reverse()
|
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 {
|
do {
|
||||||
const node = nodes[lastSelectIndex]
|
const node = nodes[lastSelectIndex]
|
||||||
if (node.tagName == 'TR') {
|
if (node.tagName == 'TR') {
|
||||||
|
|
Loading…
Reference in New Issue