瀏覽代碼

bug 5756 修复

haojianlong 4 年之前
父節點
當前提交
adf75d4f99
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/components/homeView/createGraphDialog.vue

+ 2 - 1
src/components/homeView/createGraphDialog.vue

@@ -122,7 +122,7 @@ export default {
         if (res.result == "success") {
           this.outerVisible = false;
           this.$message.success('创建成功');
-          this.$router.push({
+          const routeUrl = this.$router.resolve({
             name: 'Editer',
             query: {
               graphId: res.entityList[0].graphId,
@@ -131,6 +131,7 @@ export default {
               isPub: 0
             }
           })
+          window.open(routeUrl.href, "_blank");
         } else {
           this.$message(res.message)
         }