Browse Source

Pull request #2636: BI-104282 fix:switch初始状态文字显示控制增加selected判断

Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master

* commit '462ac36c76d5171a6be7c50920ce8e10bc626bfb':
  BI-104282 fix:switch初始状态文字显示控制增加selected判断
es6
Claire.Tang 3 years ago
parent
commit
7c8274ff99
  1. 6
      src/case/button/switch.js

6
src/case/button/switch.js

@ -36,14 +36,14 @@ BI.Switch = BI.inherit(BI.BasicButton, {
width: 12, width: 12,
height: 12, height: 12,
top: tgap, top: tgap,
left: this.options.selected ? 28 : 4 left: o.selected ? 28 : 4
}, { }, {
type: "bi.label", type: "bi.label",
text: BI.i18nText("BI-Basic_Simple_Open"), text: BI.i18nText("BI-Basic_Simple_Open"),
cls: "content-tip", cls: "content-tip",
left: 8, left: 8,
top: tgap - 2, top: tgap - 2,
invisible: !o.showTip, invisible: !(o.showTip && o.selected),
ref: function (ref) { ref: function (ref) {
self.openTip = ref; self.openTip = ref;
} }
@ -53,7 +53,7 @@ BI.Switch = BI.inherit(BI.BasicButton, {
cls: "content-tip", cls: "content-tip",
right: 8, right: 8,
top: tgap - 2, top: tgap - 2,
invisible: !o.showTip, invisible: !(o.showTip && !o.selected),
ref: function (ref) { ref: function (ref) {
self.closeTip = ref; self.closeTip = ref;
} }

Loading…
Cancel
Save