Browse Source

home: feat> 新建拓扑图跳转编辑页

haojianlong 4 years ago
parent
commit
560f498aba
3 changed files with 10 additions and 4 deletions
  1. 1 1
      src/api/httputils.ts
  2. 1 1
      src/components/homeView/createGraphDialog.vue
  3. 8 2
      src/views/home.vue

+ 1 - 1
src/api/httputils.ts

@@ -21,7 +21,7 @@ axiosservice.interceptors.request.use(
     (config) => {
         config.withCredentials = true // 允许携带token ,这个是解决跨域产生的相关问题
         config.headers = {
-            projectID: '1',//项目id
+            projectID: 'Pj1101050029',//项目id
         }
         return config
     },

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

@@ -118,7 +118,7 @@ export default {
         if (res.result == "success") {
           this.outerVisible = false;
           this.$message.success('创建成功');
-          this.$emit("createSuc")
+          this.$emit("createSuc", res.entityList)
         } else {
           this.$message(res.message)
         }

+ 8 - 2
src/views/home.vue

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