update Upload

update Upload
This commit is contained in:
梁灏 2017-01-22 18:08:36 +08:00
parent a6ac0a7603
commit 3c2f68f215
2 changed files with 12 additions and 2 deletions

View file

@ -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;
}
}