Browse Source

无JIRA feat: 处理单选和复选场景valueFormatter统一

es6
zsmj 2 years ago
parent
commit
9ef4908662
  1. 15
      src/case/trigger/trigger.text.select.js

15
src/case/trigger/trigger.text.select.js

@ -52,17 +52,18 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
_digest: function (val, items) {
var o = this.options;
// 提升valueFormatter的优先级
if (o.valueFormatter !== BI.emptyFn && BI.isFunction(o.valueFormatter)) {
return {
text: o.valueFormatter(val),
};
}
val = BI.isArray(val) ? val.slice() : [val];
var result = [];
// 提升valueFormatter的优先级
if (o.valueFormatter !== BI.emptyFn && BI.isFunction(o.valueFormatter)) {
BI.each(val, function (index, v) {
result.push(o.valueFormatter(v));
});
return result.join(",");
}
var formatItems = BI.Tree.transformToArrayFormat(items);
BI.each(formatItems, function (i, item) {
if (BI.contains(val, item.value) && !BI.contains(result, item.text || item.value)) {

Loading…
Cancel
Save