Browse Source

无JIRA任务 视觉调整

es6
王瑞 6 years ago
parent
commit
a9369c3dcc
  1. 6
      src/case/combo/bubblecombo/popup.bubble.js
  2. 5
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

6
src/case/combo/bubblecombo/popup.bubble.js

@ -124,7 +124,7 @@ BI.shortcut("bi.bubble_bar_popup_view", BI.BubblePopupBarView);
* @extends BI.BubblePopupView * @extends BI.BubblePopupView
*/ */
BI.TextBubblePopupBarView = BI.inherit(BI.Widget, { BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
props: { props: {
baseCls: "bi-text-bubble-bar-popup-view", baseCls: "bi-text-bubble-bar-popup-view",
text: "", text: "",
@ -156,7 +156,7 @@ BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
buttons: [{ buttons: [{
type: "bi.button", type: "bi.button",
value: BI.i18nText("BI-Basic_Cancel"), value: BI.i18nText("BI-Basic_Cancel"),
ghost: true, level: "ignore",
height: 24, height: 24,
handler: function () { handler: function () {
self.fireEvent(BI.BubblePopupBarView.EVENT_CLICK_TOOLBAR_BUTTON, false); self.fireEvent(BI.BubblePopupBarView.EVENT_CLICK_TOOLBAR_BUTTON, false);
@ -185,4 +185,4 @@ BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
} }
}); });
BI.TextBubblePopupBarView.EVENT_CHANGE = "EVENT_CHANGE"; BI.TextBubblePopupBarView.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.text_bubble_bar_popup_view", BI.TextBubblePopupBarView); BI.shortcut("bi.text_bubble_bar_popup_view", BI.TextBubblePopupBarView);

5
src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

@ -9,6 +9,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
text: "", text: "",
items: [], items: [],
tipType: "", tipType: "",
extraCls: "",
warningTitle: "", warningTitle: "",
attributes: { attributes: {
tabIndex: 0 tabIndex: 0
@ -30,7 +31,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}, },
el: { el: {
type: "bi.search_text_value_trigger", type: "bi.search_text_value_trigger",
cls: "search-text-value-trigger", cls: "search-text-value-trigger " + this.options.extraCls,
ref: function () { ref: function () {
self.trigger = this; self.trigger = this;
}, },
@ -153,4 +154,4 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}); });
BI.SearchTextValueCombo.EVENT_CHANGE = "EVENT_CHANGE"; BI.SearchTextValueCombo.EVENT_CHANGE = "EVENT_CHANGE";
BI.SearchTextValueCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW"; BI.SearchTextValueCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
BI.shortcut("bi.search_text_value_combo", BI.SearchTextValueCombo); BI.shortcut("bi.search_text_value_combo", BI.SearchTextValueCombo);

Loading…
Cancel
Save