修复在下载列表右击未下载完成的歌曲弹出的右击菜单中没有开始下载选项的问题
parent
e0de81230e
commit
b3757fd6b5
|
@ -23,6 +23,7 @@
|
||||||
- 修复mg源歌单列表无法加载的问题
|
- 修复mg源歌单列表无法加载的问题
|
||||||
- 修复kg跳转到官方歌曲详情页的歌曲无法播放的问题
|
- 修复kg跳转到官方歌曲详情页的歌曲无法播放的问题
|
||||||
- 修复我的列表的歌曲添加到其他列表时不排除当前列表的问题
|
- 修复我的列表的歌曲添加到其他列表时不排除当前列表的问题
|
||||||
|
- 修复在下载列表右击未下载完成的歌曲弹出的右击菜单中没有开始下载选项的问题
|
||||||
|
|
||||||
### 变更
|
### 变更
|
||||||
|
|
||||||
|
|
|
@ -386,12 +386,12 @@ export default {
|
||||||
this.listMenu.itemMenuControl.file = true
|
this.listMenu.itemMenuControl.file = true
|
||||||
this.listMenu.itemMenuControl.start =
|
this.listMenu.itemMenuControl.start =
|
||||||
this.listMenu.itemMenuControl.pause = false
|
this.listMenu.itemMenuControl.pause = false
|
||||||
// } else if (item.status === this.downloadStatus.ERROR || item.status === this.downloadStatus.PAUSE) {
|
} else if (item.status === this.downloadStatus.ERROR || item.status === this.downloadStatus.PAUSE) {
|
||||||
// this.listMenu.itemMenuControl.play =
|
this.listMenu.itemMenuControl.play =
|
||||||
// this.listMenu.itemMenuControl.playLater =
|
this.listMenu.itemMenuControl.playLater =
|
||||||
// this.listMenu.itemMenuControl.pause =
|
this.listMenu.itemMenuControl.pause =
|
||||||
// this.listMenu.itemMenuControl.file = false
|
this.listMenu.itemMenuControl.file = false
|
||||||
// this.listMenu.itemMenuControl.start = true
|
this.listMenu.itemMenuControl.start = true
|
||||||
} else {
|
} else {
|
||||||
this.listMenu.itemMenuControl.play =
|
this.listMenu.itemMenuControl.play =
|
||||||
this.listMenu.itemMenuControl.playLater =
|
this.listMenu.itemMenuControl.playLater =
|
||||||
|
|
Loading…
Reference in New Issue