|
|
@ -14363,14 +14363,14 @@ BI.Widget = BI.inherit(BI.OB, { |
|
|
|
|
|
|
|
|
|
|
|
render: null, |
|
|
|
render: null, |
|
|
|
|
|
|
|
|
|
|
|
beforeMounted: null, |
|
|
|
beforeMount: null, |
|
|
|
|
|
|
|
|
|
|
|
mounted: null, |
|
|
|
mounted: null, |
|
|
|
|
|
|
|
|
|
|
|
update: function () { |
|
|
|
update: function () { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
beforeDestroyed: null, |
|
|
|
beforeDestroy: null, |
|
|
|
|
|
|
|
|
|
|
|
destroyed: null, |
|
|
|
destroyed: null, |
|
|
|
|
|
|
|
|
|
|
@ -14498,7 +14498,7 @@ BI.Widget = BI.inherit(BI.OB, { |
|
|
|
if (!isMounted) { |
|
|
|
if (!isMounted) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
this.beforeMounted && this.beforeMounted(); |
|
|
|
this.beforeMount && this.beforeMount(); |
|
|
|
this._isMounted = true; |
|
|
|
this._isMounted = true; |
|
|
|
this._mountChildren && this._mountChildren(); |
|
|
|
this._mountChildren && this._mountChildren(); |
|
|
|
BI.each(this._children, function (i, widget) { |
|
|
|
BI.each(this._children, function (i, widget) { |
|
|
@ -14738,7 +14738,7 @@ BI.Widget = BI.inherit(BI.OB, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
__d: function () { |
|
|
|
__d: function () { |
|
|
|
this.beforeDestroyed && this.beforeDestroyed(); |
|
|
|
this.beforeDestroy && this.beforeDestroy(); |
|
|
|
BI.each(this._children, function (i, widget) { |
|
|
|
BI.each(this._children, function (i, widget) { |
|
|
|
widget._unMount && widget._unMount(); |
|
|
|
widget._unMount && widget._unMount(); |
|
|
|
}); |
|
|
|
}); |
|
|
@ -15310,7 +15310,7 @@ BI.View = BI.inherit(BI.V, { |
|
|
|
|
|
|
|
|
|
|
|
created: null, |
|
|
|
created: null, |
|
|
|
|
|
|
|
|
|
|
|
beforeDestroyed: null, |
|
|
|
beforeDestroy: null, |
|
|
|
|
|
|
|
|
|
|
|
destroyed: null, |
|
|
|
destroyed: null, |
|
|
|
|
|
|
|
|
|
|
@ -15801,7 +15801,7 @@ BI.View = BI.inherit(BI.V, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_unMount: function () { |
|
|
|
_unMount: function () { |
|
|
|
this.beforeDestroyed && this.beforeDestroyed(); |
|
|
|
this.beforeDestroy && this.beforeDestroy(); |
|
|
|
BI.each(this._cardLayouts, function (name, card) { |
|
|
|
BI.each(this._cardLayouts, function (name, card) { |
|
|
|
card && card._unMount(); |
|
|
|
card && card._unMount(); |
|
|
|
}); |
|
|
|
}); |
|
|
|