mo 4 年之前
父節點
當前提交
3916175a3c
共有 1 個文件被更改,包括 0 次插入16 次删除
  1. 0 16
      src/views/musicalManager/index.vue

+ 0 - 16
src/views/musicalManager/index.vue

@@ -162,14 +162,6 @@ export default {
   mounted() {
     // 获取分部
     this.$store.dispatch("setBranchs");
-    getSoundTree({ tenantId: 1, rows: 9999 }).then((res) => {
-      if (res.code == 200) {
-        if (res.code == 200) {
-          this.soundList = res.data.rows;
-          this.getSound();
-        }
-      }
-    });
     this.init();
   },
   methods: {
@@ -180,14 +172,6 @@ export default {
       this.getList();
     },
     onReSet() {},
-    getSound() {
-      this.soundLists = [];
-      for (let i in this.soundList) {
-        if (this.soundList[i].subjects.length > 0) {
-          this.soundLists = this.soundLists.concat(this.soundList[i].subjects);
-        }
-      }
-    },
   },
 };
 </script>