haojianlong 4 years ago
parent
commit
014e09d271

+ 5 - 4
src/utils/graph/FloorScene.ts

@@ -14,7 +14,7 @@ import { VirtualWall } from "@persagy-web/big/lib/types/floor/VirtualWall";
 import { Wall } from "@persagy-web/big/lib/types/floor/Wall";
 import { Zone } from "@persagy-web/big/lib/types/floor/Zone";
 import { FloorData } from "@persagy-web/big/lib/types/FloorData";
-import { SGraphScene } from "@persagy-web/graph/lib";
+import { SGraphItem, SGraphScene } from "@persagy-web/graph/lib";
 
 /**
  * 楼层平面图
@@ -229,7 +229,8 @@ export class FloorScene extends SGraphScene {
     /**
      * 选择器触发事件
     */
-   listChange() {
-       console.log(arguments);       
-   }
+    listChange(item: SGraphItem, data: SGraphItem[]) {
+        this.changeSelect(item, data)
+    }
+    changeSelect(item: SGraphItem, data: SGraphItem[]) { }
 }

+ 9 - 0
src/views/maintain/space/components/spaceGraph.vue

@@ -154,6 +154,9 @@ export default class spaceGraph extends Vue {
             // @ts-ignore
             this.$refs.canvasFun.everyScale = this.view.scale;
         }
+        if (this.scene) {
+            this.scene!.changeSelect = this.changeSelect
+        }
     }
     // 清除canvas
     clearGraphy() {
@@ -232,6 +235,12 @@ export default class spaceGraph extends Vue {
 
     groupCreateZone() {}
 
+    //
+    changeSelect(){
+        console.log(arguments);
+        
+    }
+
     // 适配底图到窗口
     fit() {
         this.view?.fitSceneToView();