Browse Source

BI-73636 fix:年季度控件“季度”显示不全

es6
Jimmy.Chai 4 years ago
parent
commit
6a9999c847
  1. 16
      src/widget/yearquarter/trigger.yearquarter.js

16
src/widget/yearquarter/trigger.yearquarter.js

@ -18,6 +18,9 @@ BI.DynamicYearQuarterTrigger = BI.inherit(BI.Trigger, {
this.yearEditor = this._createEditor(true);
this.quarterEditor = this._createEditor(false);
// 暂时的解决方法
var heigth = o.height + 2;
BI.createWidget({
element: this,
type: "bi.htape",
@ -29,9 +32,9 @@ BI.DynamicYearQuarterTrigger = BI.inherit(BI.Trigger, {
el: {
type: "bi.text_button",
text: BI.i18nText("BI-Multi_Date_Year"),
width: o.height
width: heigth
},
width: o.height
width: heigth
}]
}, {
type: "bi.htape",
@ -39,16 +42,17 @@ BI.DynamicYearQuarterTrigger = BI.inherit(BI.Trigger, {
el: {
type: "bi.text_button",
text: BI.i18nText("BI-Multi_Date_Quarter"),
width: o.height
width: heigth
},
width: o.height}]
width: heigth
}]
}]
}, {
el: {
type: "bi.trigger_icon_button",
width: o.height
width: heigth
},
width: o.height
width: heigth
}]
});
this.setValue(o.value);

Loading…
Cancel
Save