update Upload
update Upload
This commit is contained in:
parent
a6ac0a7603
commit
3c2f68f215
2 changed files with 12 additions and 2 deletions
|
@ -207,7 +207,7 @@
|
|||
const _file_format = file.name.split('.').pop().toLocaleLowerCase();
|
||||
const checked = this.format.some(item => item.toLocaleLowerCase() === _file_format);
|
||||
if (!checked) {
|
||||
this.onFormatError(file);
|
||||
this.onFormatError(file, this.fileList);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -215,7 +215,7 @@
|
|||
// check maxSize
|
||||
if (this.maxSize) {
|
||||
if (file.size > this.maxSize * 1024) {
|
||||
this.onExceededSize(file);
|
||||
this.onExceededSize(file, this.fileList);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue