|
@@ -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();
|