Browse Source

JSY-25808 fix: fineui-复选下拉框bug

research/test
zsmj 2 years ago
parent
commit
bd331aad6c
  1. 2
      src/case/combo/textvaluecombo/combo.textvalue.js
  2. 6
      src/case/combo/textvaluecombo/popup.textvalue.js

2
src/case/combo/textvaluecombo/combo.textvalue.js

@ -144,7 +144,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
el: popup, el: popup,
value: o.value, value: o.value,
maxHeight: 240, maxHeight: 240,
minHeight: 25 minHeight: 60
} }
}; };
}, },

6
src/case/combo/textvaluecombo/popup.textvalue.js

@ -131,8 +131,10 @@ BI.TextValueComboPopup = BI.inherit(BI.Pane, {
}; };
}, },
mounted: function () { beforeMount: function () {
this.check(); if (this.options.chooseType !== BI.ButtonGroup.CHOOSE_TYPE_MULTI) {
this.check();
}
}, },
_formatItems: function (items) { _formatItems: function (items) {

Loading…
Cancel
Save