Forráskód Böngészése

调整在主页面获取所有分类 增加恢复时恢复的位置

haojianlong 4 éve
szülő
commit
53cb3cdc32

+ 16 - 4
src/components/homeView/graphTypeDialog.vue

@@ -23,7 +23,7 @@
   </el-dialog>
 </template>
 <script>
-import { queryCategoryGraph } from "@/api/home"
+import { mapState } from "vuex";
 export default {
   data() {
     return {
@@ -37,14 +37,26 @@ export default {
       selectNode: {}
     }
   },
+  computed: {
+    ...mapState(["categoryGraph"]),
+  },
   mounted() {
     this.init()
   },
+  watch: {
+    categoryGraph: {
+      handler: function(v) {
+        this.treeData = v;
+      },
+      immediate: true,
+      deep: true
+    }
+  },
   methods: {
     init() {
-      queryCategoryGraph({ switch: true }).then(res => {
-        this.treeData = res.content;
-      })
+      // queryCategoryGraph({ switch: true }).then(res => {
+      //   this.treeData = this.categoryGraph;
+      // })
     },
     showDialog() {
       this.innerVisible = true

+ 17 - 4
src/components/homeView/move.vue

@@ -11,7 +11,8 @@
 </template>
 
 <script>
-import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home"
+import { updateDraftsGraph, updatePubGraph } from "@/api/home"
+import { mapState } from "vuex";
 export default {
   props: {
     isPub: {
@@ -32,14 +33,26 @@ export default {
       data: []
     };
   },
+  computed: {
+    ...mapState(["categoryGraph"]),
+  },
   mounted() {
     this.init()
   },
+  watch: {
+    categoryGraph: {
+      handler: function(v) {
+        this.treeData = v;
+      },
+      immediate: true,
+      deep: true
+    }
+  },
   methods: {
     init() {
-      queryCategoryGraph({ switch: true }).then(res => {
-        this.treeData = res.content;
-      })
+      // queryCategoryGraph({ switch: true }).then(res => {
+      //   this.treeData = res.content;
+      // })
     },
     showDialog(data) {
       this.dialogVisible = true;

+ 0 - 1
src/components/homeView/recycle.vue

@@ -73,7 +73,6 @@ export default {
         });
         this.queryText = '';
         this.recycleLoading = false;
-        console.log('*******************************************');
       })
 
     },

+ 34 - 2
src/components/homeView/recycleDialog.vue

@@ -10,13 +10,37 @@
 
 <script>
 import { recoveryGraph, queryDraftsGraph } from "@/api/home"
+import { mapState } from "vuex"
+function changeArr(list, map) {
+  for (let i = 0; i < list.length; i++) {
+    const ele = list[i];
+    if (ele.categoryList) {
+      changeArr(ele.categoryList, map);
+    }
+    map[ele.code] = ele;
+    delete map[ele.code].categoryList
+  }
+}
 export default {
   data() {
     return {
       dialogVisible: false,
-      data: {}
+      data: {},
+      codeToName: {}
     };
   },
+  computed: {
+    ...mapState(["categoryGraph"])
+  },
+  watch: {
+    categoryGraph: {
+      handler: function(v) {
+        changeArr(v, this.codeToName)
+      },
+      immediate: true,
+      deep: true
+    }
+  },
   methods: {
     showDialog(data) {
       this.data = data;
@@ -50,10 +74,18 @@ export default {
       if (res.result == "success") {
         this.dialogVisible = false;
         this.$emit("recoverSuc");
-        this.$message.success('恢复成功');
+        this.$message.success(`已恢复至${this.getCategoryName(this.data.categoryId) || ''}`);
       } else {
         this.$message(res.message)
       }
+    },
+    // 获取恢复的图的分类
+    getCategoryName(id) {
+      if (!this.codeToName[id].parentId) {
+        return this.codeToName[id].name
+      } else {
+        return this.getCategoryName(this.codeToName[id].parentId) + '-' + this.codeToName[id].name
+      }
     }
   }
 };

+ 14 - 2
src/store/index.ts

@@ -1,5 +1,6 @@
 import Vue from 'vue'
 import Vuex from 'vuex'
+import { queryCategoryGraph } from "@/api/home"
 
 Vue.use(Vuex)
 
@@ -14,9 +15,10 @@ export default new Vuex.Store({
     categoryId: '',   //类型id 用于读图
     tupoName: '',  //拓扑图名称
     version: "", //版本号
-    viewBackground:'',
+    viewBackground: '',
     equipmentItemList: [], // 图上相关的设备实例
-    equipmentItemNum: 0 //图上相关的设备实例的数量
+    equipmentItemNum: 0, //图上相关的设备实例的数量
+    categoryGraph: [], // 拓扑图所属分类-所有分类list
   },
   mutations: {
     // 修改编辑器命令
@@ -71,9 +73,19 @@ export default new Vuex.Store({
       };
       state.equipmentItemList = arr1;
       state.equipmentItemNum = state.equipmentItemList.length
+    },
+    // 获取完成所有分类后
+    SETCATEGORYGRAPH(state, val): void {
+      state.categoryGraph = val;
+      
     }
   },
   actions: {
+    async getAllCategoryType({ commit }) {
+      await queryCategoryGraph({ switch: true }).then(res => {
+        commit('SETCATEGORYGRAPH', res.content)
+      })
+    }
   },
   modules: {
   }

+ 3 - 1
src/views/home.vue

@@ -166,7 +166,7 @@ import tagDialog from "@/components/homeView/tagDialog";
 import recycle from "@/components/homeView/recycle";
 import createGraphDialog from "@/components/homeView/createGraphDialog";
 import { SNetUtil } from "@persagy-web/base";
-import { mapMutations, mapState } from "vuex";
+import { mapMutations, mapState, mapActions } from "vuex";
 ////////////////////////////////
 // 常量
 // 图服务路径
@@ -204,6 +204,7 @@ export default {
   },
   methods: {
     ...mapMutations(["SETPROJECTID"]),
+    ...mapActions(['getAllCategoryType']),
     getProject(data) {
       this.SETPROJECTID(data.id);
       // 判断垃圾箱是否可以点击
@@ -498,6 +499,7 @@ export default {
 
     // 判断垃圾箱是否可以点击
     this.getRecycleData();
+    this.getAllCategoryType()
   },
 };
 </script>