Browse Source

Merge pull request #160084 in DEC/fineui from master to feature/x

* commit 'f570f0b244c01e01599c5c4414046d52352db89b':
  KERNEL-12609 fix: From FDL 显示日志信息场景,label默认带有tooltip逻辑导致卡顿
master
superman 2 years ago
parent
commit
4432e66656
  1. 6
      src/base/single/tip/tip.tooltip.js

6
src/base/single/tip/tip.tooltip.js

@ -25,10 +25,12 @@ BI.Tooltip = BI.inherit(BI.Tip, {
render: function () {
var o = this.options;
this.element.addClass("tooltip-" + o.level);
function fn(e) {
o.stopPropagation && e.stopPropagation();
o.stopEvent && e.stopEvent();
}
this.element.bind({
click: fn,
mousedown: fn,
@ -48,7 +50,7 @@ BI.Tooltip = BI.inherit(BI.Tip, {
innerVgap: this._const.vgap,
items: BI.map(texts, function (i, text) {
return {
type: "bi.label",
type: "bi.text",
textAlign: o.textAlign,
whiteSpace: "normal",
text: text,
@ -58,7 +60,7 @@ BI.Tooltip = BI.inherit(BI.Tip, {
});
} else {
this.text = BI.createWidget({
type: "bi.label",
type: "bi.text",
element: this,
textAlign: o.textAlign,
whiteSpace: "normal",

Loading…
Cancel
Save