Browse Source

REPORT-56962 fix: 文件控件取值过滤掉失败文件

es6
iapyang 3 years ago
parent
commit
460ca57224
  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