lex-xin 2 年之前
父節點
當前提交
632350a968

文件差異過大導致無法顯示
+ 0 - 0
dist/app.425e6abdf3d90fa65c1a.js


文件差異過大導致無法顯示
+ 0 - 0
dist/css/ArrangeWork.dc5da389.css


文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/js/ArrangeWork.92c5455d.js


+ 14 - 8
src/views/audition/ArrangeWork.vue

@@ -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;
     },

部分文件因文件數量過多而無法顯示