|
@@ -326,18 +326,19 @@ export default {
|
|
|
console.log(res, "getAccompany");
|
|
|
if (res && res.content) {
|
|
|
console.log(res);
|
|
|
- this.tabActiveList.musicScoreIdList[this.tabActiveIndex] = {
|
|
|
- id: res.content.songId,
|
|
|
- name: res.content.songName,
|
|
|
- songPart: res.content.songPart,
|
|
|
- };
|
|
|
+ // this.tabActiveList.musicScoreIdList[this.tabActiveIndex] = {
|
|
|
+ // id: res.content.songId,
|
|
|
+ // name: res.content.songName,
|
|
|
+ // songPart: res.content.songPart,
|
|
|
+ // };
|
|
|
+ this.onSelectMusic(res);
|
|
|
console.log(this.tabActiveList, "this.tabActiveList");
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
onSelectAccompany(item, index) {
|
|
|
- // this.accompanimentStatus = true
|
|
|
+ this.accompanimentStatus = true;
|
|
|
// 唤起弹窗
|
|
|
postMessage({
|
|
|
api: "openAccompany",
|
|
@@ -353,6 +354,7 @@ export default {
|
|
|
music[0] = {
|
|
|
id: null,
|
|
|
name: null,
|
|
|
+ songPart: null,
|
|
|
};
|
|
|
this.$forceUpdate();
|
|
|
} else {
|
|
@@ -375,9 +377,13 @@ export default {
|
|
|
return val;
|
|
|
},
|
|
|
onSelectMusic(value) {
|
|
|
+ console.log(value);
|
|
|
this.tabActiveList.musicScoreIdList[this.tabActiveIndex] = {
|
|
|
- id: value.examSongId,
|
|
|
- name: value.name,
|
|
|
+ // id: value.examSongId,
|
|
|
+ // name: value.name,
|
|
|
+ id: value.content.songId,
|
|
|
+ name: value.content.songName,
|
|
|
+ songPart: value.content.songPart,
|
|
|
};
|
|
|
this.accompanimentStatus = false;
|
|
|
},
|