|
|
@@ -511,8 +511,9 @@
|
|
|
return false
|
|
|
}
|
|
|
if (file.type == 'application/pdf' || file.type == 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'|| file.type == 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') {
|
|
|
- if(file.size> 5250000){
|
|
|
- this.msgError('上传大小不能超过5M')
|
|
|
+ const MAX_FILE_SIZE = 1024 * 1024 * 1024;
|
|
|
+ if(file.size> MAX_FILE_SIZE){
|
|
|
+ this.msgError('上传大小不能超过1G')
|
|
|
return false
|
|
|
}
|
|
|
this.upDataName = file.name;
|