导出歌单移除换源信息
parent
2a74abdef4
commit
006da66028
|
@ -719,13 +719,18 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
exportPlayList(path) {
|
exportPlayList(path) {
|
||||||
const data = {
|
const data = JSON.parse(JSON.stringify({
|
||||||
type: 'playList',
|
type: 'playList',
|
||||||
data: [
|
data: [
|
||||||
this.defaultList,
|
this.defaultList,
|
||||||
this.loveList,
|
this.loveList,
|
||||||
...this.userList,
|
...this.userList,
|
||||||
],
|
],
|
||||||
|
}))
|
||||||
|
for (const list of data.data) {
|
||||||
|
for (const item of list.list) {
|
||||||
|
if (item.otherSource) delete item.otherSource
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.handleSaveFile(path, JSON.stringify(data))
|
this.handleSaveFile(path, JSON.stringify(data))
|
||||||
},
|
},
|
||||||
|
@ -750,7 +755,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async exportAllData(path) {
|
async exportAllData(path) {
|
||||||
let allData = {
|
let allData = JSON.parse(JSON.stringify({
|
||||||
type: 'allData',
|
type: 'allData',
|
||||||
setting: Object.assign({ version: this.settingVersion }, this.setting),
|
setting: Object.assign({ version: this.settingVersion }, this.setting),
|
||||||
playList: [
|
playList: [
|
||||||
|
@ -758,6 +763,11 @@ export default {
|
||||||
this.loveList,
|
this.loveList,
|
||||||
...this.userList,
|
...this.userList,
|
||||||
],
|
],
|
||||||
|
}))
|
||||||
|
for (const list of allData.playList) {
|
||||||
|
for (const item of list.list) {
|
||||||
|
if (item.otherSource) delete item.otherSource
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.handleSaveFile(path, JSON.stringify(allData))
|
this.handleSaveFile(path, JSON.stringify(allData))
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue