Browse Source

Merge branch 'master' of ssh://cloud.finedevelop.com:7999/visual/fineui

# Conflicts:
#	changelog.md
es6
zsmj1994 5 years ago
parent
commit
2a43547648
  1. 2
      changelog.md
  2. 4
      src/core/func/function.js

2
changelog.md

@ -1,6 +1,8 @@
# 更新日志
2.0(2019-11)
-新增BI.set(object, path, value)方法
- getSearchResult兼容了对null值的处理
- 增加了异步单选下拉树请求完数据后加载完节点后会自动调整宽高的逻辑
2.0(2019-10)
- 修改了下拉树展开图标模糊的问题

4
src/core/func/function.js

@ -55,6 +55,10 @@ _.extend(BI.Func, {
keyword = BI.toUpperCase(keyword);
var matched = isArray ? [] : {}, find = isArray ? [] : {};
BI.each(items, function (i, item) {
// 兼容item为null的处理
if (BI.isNull(item)) {
return;
}
item = BI.deepClone(item);
t = BI.stripEL(item);
text = BI.find([t[param], t.text, t.value, t.name, t], function (index, val) {

Loading…
Cancel
Save