|
发表于 2019-1-14 17:24:36
|
显示全部楼层
平台的实现如下
- _bindEvent: function(){
- var m = this.getModel(), me = this, data = this.getData();
- data.on(Data.EVENT_REFRESHDATA_CREATEPARAM,this._doCreateParam,this);
- data.on(Data.EVENT_REFRESHDATA_BEFORE,this._doRefreshBefore,this);
- m.componentPromise(this.tree).done(function(comp) {
- comp.on('onTreeIconRender',me._doIconRender,me);
- });
- },
复制代码 |
|