Browse Source

无jira任务 整理下

es6
imp 3 years ago
parent
commit
4a12093189
  1. 4
      src/core/4.widget.js

4
src/core/4.widget.js

@ -50,7 +50,6 @@
// 覆盖父类的_constructor方法,widget不走ob的生命周期 // 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructed: function () { _constructed: function () {
var self = this;
if (this.setup) { if (this.setup) {
pushTarget(this); pushTarget(this);
var delegate = this.setup(this.options); var delegate = this.setup(this.options);
@ -377,6 +376,7 @@
* @param deep 子节点是否也是按照当前force处理 * @param deep 子节点是否也是按照当前force处理
* @param lifeHook 生命周期钩子触不触发默认触发 * @param lifeHook 生命周期钩子触不触发默认触发
* @param predicate 递归每个widget的回调 * @param predicate 递归每个widget的回调
* @param layer 组件层级
* @returns {boolean} * @returns {boolean}
* @private * @private
*/ */
@ -421,7 +421,6 @@
_mountChildren: null, _mountChildren: null,
_update: function (nextProps, shouldUpdate) { _update: function (nextProps, shouldUpdate) {
var o = this.options;
callLifeHook(this, "beforeUpdate"); callLifeHook(this, "beforeUpdate");
if (shouldUpdate) { if (shouldUpdate) {
var res = this.update && this.update(nextProps, shouldUpdate); var res = this.update && this.update(nextProps, shouldUpdate);
@ -570,7 +569,6 @@
}, },
removeWidget: function (nameOrWidget) { removeWidget: function (nameOrWidget) {
var self = this;
if (BI.isWidget(nameOrWidget)) { if (BI.isWidget(nameOrWidget)) {
BI.remove(this._children, nameOrWidget); BI.remove(this._children, nameOrWidget);
} else { } else {

Loading…
Cancel
Save