|
@@ -55,7 +55,7 @@
|
|
|
</el-container>
|
|
|
|
|
|
<!-- 创建弹框 -->
|
|
|
- <createGraphDialog ref="createGraphDialog"></createGraphDialog>
|
|
|
+ <createGraphDialog ref="createGraphDialog" @createSuc="createSuc"></createGraphDialog>
|
|
|
<!-- 重命名 -->
|
|
|
<rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
|
|
|
<!-- 移动到 -->
|
|
@@ -118,7 +118,7 @@ export default {
|
|
|
// 创建拓扑图
|
|
|
createProject() {
|
|
|
this.$refs.createGraphDialog.showDialog()
|
|
|
- },
|
|
|
+ },
|
|
|
// 选项改变
|
|
|
changeCheck(v) {
|
|
|
const index = this.selectCard.indexOf(v);
|
|
@@ -201,6 +201,12 @@ export default {
|
|
|
this.queryGraph();
|
|
|
this.$refs.leftAsideTree.getCategoryGraph();
|
|
|
},
|
|
|
+ // 新建拓扑图成功
|
|
|
+ createSuc(list) {
|
|
|
+ if (list.length) {
|
|
|
+ this.$router.push({ name: 'Editer', query: { graphId: list[0].graphId, id: list[0].id } })
|
|
|
+ }
|
|
|
+ },
|
|
|
/////////////////接口
|
|
|
// 查询图形信息
|
|
|
queryGraph() {
|