From 48e3fe390da8ef25c7fc8ca547c2a70d60560ad3 Mon Sep 17 00:00:00 2001 From: qcc Date: Tue, 2 Jul 2019 19:39:22 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-18860=20fix=EF=BC=9Aie8=E4=B8=8B?= =?UTF-8?q?=E9=87=8D=E5=86=99=5FinitRender=E4=BB=A3=E6=9B=BF=5Finit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/fix/fix.compact.ie.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/dist/fix/fix.compact.ie.js b/dist/fix/fix.compact.ie.js index 7fd500262..e27a507e6 100644 --- a/dist/fix/fix.compact.ie.js +++ b/dist/fix/fix.compact.ie.js @@ -129,18 +129,12 @@ return needPop; } - BI.Widget.prototype._init = function () { - BI.Widget.superclass._init.apply(this, arguments); - this._initRoot(); - this._initElementWidth(); - this._initElementHeight(); - this._initVisual(); - this._initState(); + BI.Widget.prototype._initRender = function () { if (this.beforeInit) { this.__asking = true; this.beforeInit(BI.bind(function () { if (this.model && this.model.$vm) { - this.model.$vm.$digest() + this.model.$vm.$digest(); } this._render(); }, this)); @@ -150,7 +144,7 @@ } else { this._render(); } - } + }; var _init = BI.Widget.prototype._init; BI.Widget.prototype._init = function () {