Browse Source

BI-40851 fix: 连续打开报表,表格展示样式不对

es6
Young 5 years ago
parent
commit
e8fc8d44fa
  1. 7
      dist/bundle.ie.js
  2. 40
      dist/bundle.ie.min.js
  3. 7
      dist/bundle.js
  4. 38
      dist/bundle.min.js
  5. 7
      dist/core.js
  6. 7
      dist/fineui.ie.js
  7. 40
      dist/fineui.ie.min.js
  8. 7
      dist/fineui.js
  9. 38
      dist/fineui.min.js
  10. 2
      dist/utils.min.js
  11. 6
      src/core/platform/web/dom.js

7
dist/bundle.ie.js vendored

@ -19604,9 +19604,9 @@ BI.prepares.push(function () {
return height;
},
// 获取滚动条的宽度
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function () {
if (this._scrollWidth == null) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",
@ -19643,7 +19643,8 @@ BI.prepares.push(function () {
};
}
});
})();BI.EventListener = {
})();
BI.EventListener = {
listen: function listen (target, eventType, callback) {
if (target.addEventListener) {
target.addEventListener(eventType, callback, false);

40
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/bundle.js vendored

@ -19604,9 +19604,9 @@ BI.prepares.push(function () {
return height;
},
// 获取滚动条的宽度
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function () {
if (this._scrollWidth == null) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",
@ -19643,7 +19643,8 @@ BI.prepares.push(function () {
};
}
});
})();BI.EventListener = {
})();
BI.EventListener = {
listen: function listen (target, eventType, callback) {
if (target.addEventListener) {
target.addEventListener(eventType, callback, false);

38
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/core.js vendored

@ -19604,9 +19604,9 @@ BI.prepares.push(function () {
return height;
},
// 获取滚动条的宽度
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function () {
if (this._scrollWidth == null) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",
@ -19643,7 +19643,8 @@ BI.prepares.push(function () {
};
}
});
})();BI.EventListener = {
})();
BI.EventListener = {
listen: function listen (target, eventType, callback) {
if (target.addEventListener) {
target.addEventListener(eventType, callback, false);

7
dist/fineui.ie.js vendored

@ -19849,9 +19849,9 @@ BI.prepares.push(function () {
return height;
},
// 获取滚动条的宽度
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function () {
if (this._scrollWidth == null) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",
@ -19888,7 +19888,8 @@ BI.prepares.push(function () {
};
}
});
})();BI.EventListener = {
})();
BI.EventListener = {
listen: function listen (target, eventType, callback) {
if (target.addEventListener) {
target.addEventListener(eventType, callback, false);

40
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/fineui.js vendored

@ -19849,9 +19849,9 @@ BI.prepares.push(function () {
return height;
},
// 获取滚动条的宽度
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function () {
if (this._scrollWidth == null) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",
@ -19888,7 +19888,8 @@ BI.prepares.push(function () {
};
}
});
})();BI.EventListener = {
})();
BI.EventListener = {
listen: function listen (target, eventType, callback) {
if (target.addEventListener) {
target.addEventListener(eventType, callback, false);

38
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

6
src/core/platform/web/dom.js

@ -249,9 +249,9 @@
return height;
},
// 获取滚动条的宽度
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function () {
if (this._scrollWidth == null) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",
@ -288,4 +288,4 @@
};
}
});
})();
})();

Loading…
Cancel
Save