Browse Source

bug5681修复

haojianlong 4 years ago
parent
commit
269be065e2
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/views/home.vue

+ 4 - 1
src/views/home.vue

@@ -102,7 +102,7 @@
           </div>
         </div>
         <div class="main-body" v-loading="cardLoading">
-          <div class="has-data-body" v-if="cardList.length">
+          <div class="has-data-body" v-if="noTreeFlag && cardList.length">
             <template v-for="t in cardList">
               <topoImageCard
                 :isPub="isPub"
@@ -205,6 +205,8 @@ export default {
     ...mapMutations(["SETPROJECTID"]),
     getProject(data) {
       this.SETPROJECTID(data.id);
+      // 判断垃圾箱是否可以点击
+      this.getRecycleData();
     },
     // 创建拓扑图
     createProject() {
@@ -293,6 +295,7 @@ export default {
     },
     // 选中节点变化
     changeNode(data) {
+      this.noTreeFlag = true
       this.curCategory = data;
       this.categoryName = data.name;
       this.queryGraph();