diff --git a/src/core/4.widget.js b/src/core/4.widget.js index 2d5c3d8da..bddc7caba 100644 --- a/src/core/4.widget.js +++ b/src/core/4.widget.js @@ -570,12 +570,12 @@ throw new Error("组件:组件名已存在,不能进行添加"); } widget._setParent && widget._setParent(this); - // if(!this.isEnabled()){ - // widget._setEnable(false); - // } - // if(!this.isValid()){ - // widget._setValid(false); - // } + if (this.options.disabled) { + widget.options && (widget.options.disabled = true); + } + if (this.options.invalid) { + widget.options && (widget.options.invalid = true); + } widget.on(BI.Events.DESTROY, function () { BI.remove(self._children, this); });