Pārlūkot izejas kodu

插入我的PPT目录调整

cldu 3 nedēļas atpakaļ
vecāks
revīzija
08c164c37e

+ 16 - 4
src/views/ppt_manage/newVersion/components/editor/InsertPageDialog.vue

@@ -37,7 +37,7 @@
           <el-tree
             ref="privateTree"
             class="target-tree"
-            :empty-text="$t('Slides.no_categories_empty-')"
+            :empty-text="$t('Slides.no_categories_empty')"
             :data="privateList"
             node-key="nodeKeyId"
             :expand-on-click-node="false"
@@ -193,12 +193,24 @@ export default {
     },
     async getPrivateList(){
       const res = this.$parent.currentLang!=='en'
-                  ?await pptInterface.getCatalogsList()
+                  ?await pptInterface.getCatalogsListV2({Source: 1})
                   :await pptEnInterface.getCatalogsList()
       if(res.Ret!==200) return
-      this.privateList = changeCatalogArr(res.Data.PrivateList)
+      let tempArr = this.getFilteredData(res.Data||[]);
+      this.privateList = changeCatalogArr(tempArr||[]);
       this.listloading = false
-    }
+    },
+    getFilteredData(data) {
+      const temp = JSON.parse(JSON.stringify(data));
+      return temp.map(item => this.filterPptList(item)).filter(item => item != null);
+    },
+    filterPptList(node) {
+      if (!node) return null;
+      if (Array.isArray(node.Child)) {
+        node.Child = node.Child.map(child => this.filterPptList(child)) .filter(child => child != null); 
+      }
+      return (Array.isArray(node.PptList) && node.PptList.length > 0) || (node.Child && node.Child.length > 0) ? node : null;
+    },
   },
 };
 </script>