|
@@ -51,7 +51,7 @@
|
|
|
<div class="has-data-body" v-if="cardList.length">
|
|
|
<template v-for="t in cardList">
|
|
|
<topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
|
|
|
- @delete="deleteGraph" @editTag="editTag"></topoImageCard>
|
|
|
+ @delete="deleteGraph" @editTag="editTag" @toEdit="toEdit"></topoImageCard>
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="no-data-body" v-else style="margin-top: 112px;">
|
|
@@ -63,7 +63,7 @@
|
|
|
</el-container>
|
|
|
|
|
|
<!-- 创建弹框 -->
|
|
|
- <createGraphDialog ref="createGraphDialog" @createSuc="createSuc"></createGraphDialog>
|
|
|
+ <createGraphDialog ref="createGraphDialog"></createGraphDialog>
|
|
|
<!-- 重命名 -->
|
|
|
<rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
|
|
|
<!-- 移动到 -->
|
|
@@ -119,6 +119,7 @@ export default {
|
|
|
curCategory: {}, // 当前选中的树节点
|
|
|
noTreeFlag: true, // 左侧树是否有数据-默认有
|
|
|
popVisible: false,
|
|
|
+ categoryName: '', // 跳转编辑页面时分类名称
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -188,6 +189,7 @@ export default {
|
|
|
// 选中节点变化
|
|
|
changeNode(data) {
|
|
|
this.curCategory = data;
|
|
|
+ this.categoryName = data.name;
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
// 发布修改
|
|
@@ -212,10 +214,15 @@ export default {
|
|
|
this.$refs.leftAsideTree.getCategoryGraph();
|
|
|
},
|
|
|
// 新建拓扑图成功
|
|
|
- createSuc(list) {
|
|
|
- if (list.length) {
|
|
|
- this.$router.push({ name: 'Editer', query: { graphId: list[0].graphId, id: list[0].id } })
|
|
|
- }
|
|
|
+ toEdit(data) {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'Editer',
|
|
|
+ query: {
|
|
|
+ graphId: data.graphId,
|
|
|
+ id: data.id,
|
|
|
+ categoryName: encodeURI(this.categoryName)
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
/////////////////接口
|
|
|
// 查询图形信息
|