소스 검색

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)
         }