Browse Source

Pull request #2280: REPORT-56962 文件控件取值过滤掉失败文件

Merge in VISUAL/fineui from ~TELLER/fineui:datatransfer to master

* commit '460ca57224b31845873e7183be77ecd8e1a93426':
  REPORT-56962 fix: 文件控件取值过滤掉失败文件
es6
Teller 3 years ago
parent
commit
2c85ee7434
  1. 6
      src/base/single/input/file.js

6
src/base/single/input/file.js

@ -668,7 +668,11 @@
},
getValue: function () {
return this.wrap ? this.wrap.attach_array : [];
return this.wrap
? BI.filter(this.wrap.attach_array, function (index, attach) {
return attach.attach_id;
})
: [];
},
getQueue: function () {

Loading…
Cancel
Save