Browse Source

修改事件名

haojianlong 4 years ago
parent
commit
6819b33021
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/utils/graph/FloorScene.ts

+ 2 - 2
src/utils/graph/FloorScene.ts

@@ -78,7 +78,7 @@ export class FloorScene extends SGraphScene {
         // 设置始终不出现选择器
         this.selectContainer.showSelect = false;
         // 绑定选择器事件
-        this.selectContainer.connect("selectChange", this, this.selectChange);
+        this.selectContainer.connect("listChange", this, this.listChange);
     }
 
     /**
@@ -229,7 +229,7 @@ export class FloorScene extends SGraphScene {
     /**
      * 选择器触发事件
     */
-   selectChange() {
+   listChange() {
        console.log(arguments);       
    }
 }