|
@@ -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[]) { }
|
|
|
}
|