mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-14 10:52:28 +08:00
fix(ui): 上传控件回调获取失败问题
This commit is contained in:
parent
9d78bc439d
commit
5922f02f6c
@ -130,7 +130,7 @@ export default {
|
||||
change(e) {
|
||||
this.$emit('on-change', e);
|
||||
if (this.isIE(9)) return this.iePost(e);
|
||||
const files = e.target.files;
|
||||
const files = JSON.parse(JSON.stringify(e.target.files));
|
||||
const len = files.length;
|
||||
const validateArray = [];
|
||||
for (let i = 0; i < len; i++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user