|
@@ -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>
|