Browse Source

Revert "KERNEL-12609 fix: From FDL 显示日志信息场景,label默认带有tooltip逻辑导致卡顿"

This reverts commit d09bd2e3d9.
es6
zsmj 2 years ago
parent
commit
2877f5f7c0
  1. 6
      src/base/single/tip/tip.tooltip.js

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

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

Loading…
Cancel
Save