Browse Source

调整数据结构

es6
guy 7 years ago
parent
commit
19bc6efa87
  1. 11
      src/core/ob.js
  2. 12
      src/core/widget.js

11
src/core/ob.js

@ -4,7 +4,11 @@
* @abstract
*/
BI.OB = function (config) {
this.options = $.extend(this._defaultConfig(config), config);
var props = this.props;
if (BI.isFunction(this.props)) {
props = this.props(config);
}
this.options = $.extend(this._defaultConfig(config), props, config);
this._init();
this._initRef();
};
@ -14,10 +18,7 @@ $.extend(BI.OB.prototype, {
},
_defaultConfig: function (config) {
if (BI.isFunction(this.props)) {
return this.props(config);
}
return this.props;
return {};
},
_init: function () {

12
src/core/widget.js

@ -7,7 +7,7 @@
*/
BI.Widget = BI.inherit(BI.OB, {
_defaultConfig: function () {
return BI.extend({
return BI.extend(BI.Widget.superclass._defaultConfig.apply(this), {
tagName: "div",
attributes: null,
data: null,
@ -17,8 +17,9 @@ BI.Widget = BI.inherit(BI.OB, {
invisible: false,
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
}, BI.Widget.superclass._defaultConfig.call(this))
})
},
//生命周期函数
@ -74,11 +75,8 @@ BI.Widget = BI.inherit(BI.OB, {
} else {
this.element = $(document.createElement(o.tagName));
}
if (o.baseCls) {
this.element.addClass(o.baseCls);
}
if (o.cls) {
this.element.addClass(o.cls);
if (o.baseCls || o.extraCls || o.cls) {
this.element.addClass((o.baseCls || "") + " " + (o.extraCls || "") + " " + (o.cls || ""));
}
if (o.attributes) {
this.element.attr(o.attributes);

Loading…
Cancel
Save