Browse Source

路径可添加项目入口

YaolongHan 4 years ago
parent
commit
94936c61ac
3 changed files with 24 additions and 7 deletions
  1. 5 1
      public/systemConf.js
  2. 7 4
      src/components/editClass/persagy-edit/PTopoScene.ts
  3. 12 2
      src/views/home.vue

+ 5 - 1
public/systemConf.js

@@ -24,7 +24,9 @@ var __systemConf = {
         { id: "Pj4403070003", name: "龙岗万达" },
         { id: "Pj5001120003", name: "香港置地" },
         { id: "Pj4403050019", name: "招商IOC" },
+        // 美凯龙
         { id: "Pj0001110001", name: "飞龙商场" },
+        { id: "Pj0001110002", name: "常州常武" },
 
         { id: "Pj0002220001", name: "数字化交付01" },
         { id: "Pj0002220002", name: "数字化交付02" },
@@ -36,7 +38,9 @@ var __systemConf = {
         { id: "Pj0002220007", name: "数字化交付07" },
         { id: "Pj0002220008", name: "数字化交付08" },
         { id: "Pj0002220009", name: "数字化交付09" },
-        { id: "Pj00022200010", name: "数字化交付10" }
+        { id: "Pj00022200010", name: "数字化交付10" },
+
+
 
     ] // 项目列表
 }

+ 7 - 4
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -43,6 +43,9 @@ import { ItemOrder } from '@persagy-web/big/lib';
 export class PTopoScene extends SBaseEditScene {
     /** 图例数据 */
     legendObj: any = null;
+
+    /** 是否打开吸附功能 */
+    isAdsorb:boolean = true;
     // 静态服务器路径
     public imgServeUrl: string = '';
     // 联通方式
@@ -109,10 +112,10 @@ export class PTopoScene extends SBaseEditScene {
     onMouseDown(event: SMouseEvent): any {
         this.vueOnMouseDown(event) //外部调用
         if (this.grabItem) {
-            if (this.grabItem instanceof SBasePipe) {
-                this.setTipeEndanchor(event)
-                return true;
-            }
+            // if (this.grabItem instanceof SBasePipe) {
+            //     this.setTipeEndanchor(event)
+            //     return true;
+            // }
             return this.grabItem.onMouseDown(event);
         }
         if (this.editCmd == "EditBaseLine") {

+ 12 - 2
src/views/home.vue

@@ -170,7 +170,7 @@ import { mapMutations, mapState } from "vuex";
 // 常量
 // 图服务路径
 const imgBaseUrl = window.__systemConf.imgServeUri;
-const ProjectData = window.__systemConf.ProjectData
+const ProjectData = window.__systemConf.ProjectData;
 export default {
   name: "home",
   data() {
@@ -469,8 +469,18 @@ export default {
       this.queryGraph();
     },
   },
+  beforeCreate() {},
   created() {
-    this.sprojectId = this.projectId;
+    // 如果传参获取项目、则项目id为该项目
+    const urlData = this.$route.query;
+    if (Object.keys(urlData).length == 0) {
+      this.sprojectId = this.projectId;
+    } else {
+      this.ProjectData = [{ id: urlData.projectId, name: urlData.projectName }];
+      this.SETPROJECTID(urlData.projectId);
+      this.sprojectId = urlData.projectId;
+    }
+
     // 判断垃圾箱是否可以点击
     this.getRecycleData();
   },