Browse Source

打开系统图编辑器、平面图编辑器时 传过去groupCode

niuheng 3 years ago
parent
commit
c88c12a6c1
2 changed files with 13 additions and 12 deletions
  1. 2 2
      src/views/draw/plane/index.vue
  2. 11 10
      src/views/draw/topo/index.vue

+ 2 - 2
src/views/draw/plane/index.vue

@@ -9,13 +9,13 @@ import { mapGetters } from "vuex";
 const planJumpUrl = window.__systemConf.planJumpUrl;
 export default {
     computed: {
-        ...mapGetters("layout", ["projectId", "projectName"]),
+        ...mapGetters("layout", ["projectId", "projectName", "group_code"]),
     },
     data() {
         return {};
     },
     created() {
-        window.open(`${planJumpUrl}?projectId=${this.projectId}&projectName=${this.projectName}`);
+        window.open(`${planJumpUrl}?projectId=${this.projectId}&projectName=${this.projectName}&gco=${this.group_code}`);
     },
 };
 </script>

+ 11 - 10
src/views/draw/topo/index.vue

@@ -8,18 +8,19 @@ import { mapGetters } from "vuex";
 // 系统图跳转地址
 const topoJumpUrl = window.__systemConf.topoJumpUrl;
 export default {
-    computed: {
-        ...mapGetters("layout", ["projectId", "projectName"]),
-    },
-    data() {
-        return {};
-    },
-    created() {
-        window.open(`${topoJumpUrl}?projectId=${this.projectId}&projectName=${this.projectName}`);
-    },
+  computed: {
+    ...mapGetters("layout", ["projectId", "projectName", "group_code"]),
+  },
+  data() {
+    return {};
+  },
+  created() {
+    window.open(
+      `${topoJumpUrl}?projectId=${this.projectId}&projectName=${this.projectName}&gco=${this.group_code}`
+    );
+  },
 };
 </script>
 
 <style>
-
 </style>