diff --git a/demo/js/case/combo/demo.text_value_combo.js b/demo/js/case/combo/demo.text_value_combo.js index 445c42277..1a2ec0068 100644 --- a/demo/js/case/combo/demo.text_value_combo.js +++ b/demo/js/case/combo/demo.text_value_combo.js @@ -11,7 +11,7 @@ Demo.TextValueCombo = BI.inherit(BI.Widget, { type: "bi.horizontal_auto", items: [{ type: "bi.icon_text_value_combo", - text: "默认值", + value: "默认值", width: 300, items: [{ text: "MVC-1", diff --git a/dist/bundle.js b/dist/bundle.js index a1032560c..29190ca62 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -67997,7 +67997,8 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { this.trigger = BI.createWidget(o.el, { type: "bi.select_text_trigger", items: o.items, - height: o.height + height: o.height, + text: o.value }); this.popup = BI.createWidget({ type: "bi.text_value_combo_popup", diff --git a/dist/case.js b/dist/case.js index 9fd58f34e..9cadf81e8 100644 --- a/dist/case.js +++ b/dist/case.js @@ -5851,7 +5851,8 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { this.trigger = BI.createWidget(o.el, { type: "bi.select_text_trigger", items: o.items, - height: o.height + height: o.height, + text: o.value }); this.popup = BI.createWidget({ type: "bi.text_value_combo_popup", diff --git a/dist/demo.js b/dist/demo.js index 1fe36afa6..85b862416 100644 --- a/dist/demo.js +++ b/dist/demo.js @@ -1886,7 +1886,7 @@ Demo.TextValueCombo = BI.inherit(BI.Widget, { type: "bi.horizontal_auto", items: [{ type: "bi.icon_text_value_combo", - text: "默认值", + value: "默认值", width: 300, items: [{ text: "MVC-1", diff --git a/dist/fineui.js b/dist/fineui.js index 5772aa357..5240bf767 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -69691,7 +69691,8 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { this.trigger = BI.createWidget(o.el, { type: "bi.select_text_trigger", items: o.items, - height: o.height + height: o.height, + text: o.value }); this.popup = BI.createWidget({ type: "bi.text_value_combo_popup", diff --git a/src/case/combo/textvaluecombo/combo.textvalue.js b/src/case/combo/textvaluecombo/combo.textvalue.js index 8b73c2280..4bb31181a 100644 --- a/src/case/combo/textvaluecombo/combo.textvalue.js +++ b/src/case/combo/textvaluecombo/combo.textvalue.js @@ -21,7 +21,8 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { this.trigger = BI.createWidget(o.el, { type: "bi.select_text_trigger", items: o.items, - height: o.height + height: o.height, + text: o.value }); this.popup = BI.createWidget({ type: "bi.text_value_combo_popup",