瀏覽代碼

删掉不需要的文件

cxmo 10 月之前
父節點
當前提交
b8c385dfc4
共有 1 個文件被更改,包括 0 次插入44 次删除
  1. 0 44
      src/views/training_manage/mixins/videoMixins.js

+ 0 - 44
src/views/training_manage/mixins/videoMixins.js

@@ -1,44 +0,0 @@
-import {TagInterface,ClassifyInterface} from '@/api/modules/trainingApi'
-export default{
-    data() {
-        return {
-            tagList:[],
-            classifyList:[],
-        }
-    },
-    methods: {
-        //获取分类列表
-        getClassifyList(type=''){
-            ClassifyInterface.getClassifyList({}).then(res=>{
-                if(res.Ret!==200) return 
-                this.classifyList = res.Data&&res.Data.List||[]
-                this.filterNodes(this.classifyList)
-                this.classifyList = this.classifyList.map(item=>{
-                    if(!item.Children){
-                        item.disabled = true
-                    }
-                    return item
-                })
-            })
-        },
-        filterNodes(arr) {
-            arr.length && arr.forEach(item => {
-                item.Children && item.Children.length && this.filterNodes(item.Children)
-                if(item.Children && !item.Children.length) {
-                    delete item.Children
-                }
-            })
-        },
-        //获取标签列表
-        getTagList(keyword=''){
-            TagInterface.getTagList({
-                Keyword:keyword,
-                PageSize:1000,
-                CurrentIndex:1
-            }).then(res=>{
-                if(res.Ret!==200) return 
-                this.tagList = res.Data&&res.Data.List||[]
-            })
-        }
-    }
-}