Browse Source

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

* commit 'dff65004c20c527d384e9add44a3698141c74f3f':
  BI-109153 feat: tootip做一下兼容
es6
superman 2 years ago
parent
commit
c581c48bc2
  1. 7
      src/base/single/0.single.js

7
src/base/single/0.single.js

@ -34,7 +34,12 @@ BI.Single = BI.inherit(BI.Widget, {
tooltipOpt = title;
} else {
tooltipOpt.level = this.getTipType() || "success";
tooltipOpt.text = tooltipOpt.level === "success" ? title : (this.getWarningTitle() || title);
// 由于以前的用法,存在大量disabled:true搭配warningTitle的情况,所以这里做一个兼容,disabled:true的情况下,依然优先显示warningTitle,避免只设置了warningTitle而没有设置title的情况
if (BI.isNull(o.tipType && !this.isEnabled())) {
tooltipOpt.text = (this.getWarningTitle() || title);
} else {
tooltipOpt.text = tooltipOpt.level === "success" ? title : (this.getWarningTitle() || title);
}
}
if (BI.isKey(tooltipOpt.text)) {
BI.Tooltips.show(e, this.getName(), tooltipOpt, this, opt);

Loading…
Cancel
Save