|
@@ -4,6 +4,7 @@
|
|
ref="upload"
|
|
ref="upload"
|
|
:accept="enclosuresAccept"
|
|
:accept="enclosuresAccept"
|
|
:headers="upload.headers"
|
|
:headers="upload.headers"
|
|
|
|
+ :before-upload="beforeUpload"
|
|
:action="upload.url"
|
|
:action="upload.url"
|
|
:disabled="upload.isUploading"
|
|
:disabled="upload.isUploading"
|
|
:on-progress="handleFileUploadProgress"
|
|
:on-progress="handleFileUploadProgress"
|
|
@@ -44,10 +45,11 @@
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
// 项目导入参数
|
|
// 项目导入参数
|
|
- enclosuresAccept: 'image/*, application/pdf, application/vnd.ms-excel,application/msword,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
|
|
- encTip: '上传格式为图片、PDF、WORD、EXCEL,最大不超过15M',
|
|
|
|
|
|
+ enclosuresAccept: 'image/*, application/pdf, application/vnd.ms-excel,application/msword,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.wordprocessingml.document,text/plain,application/pdf,application/zip, application/x-rar',
|
|
|
|
+ encTip: '上传格式为图片、PDF、WORD、EXCEL,ZIP,RAR,最大不超过15M',
|
|
|
|
+ sizeLimit: 15,
|
|
upload: {
|
|
upload: {
|
|
- title: "导入资料附件",
|
|
|
|
|
|
+ title: "导入资料附件",
|
|
// 是否禁用上传
|
|
// 是否禁用上传
|
|
isUploading: false,
|
|
isUploading: false,
|
|
// 设置上传的请求头部
|
|
// 设置上传的请求头部
|
|
@@ -78,6 +80,28 @@
|
|
this.form.fileList = files;
|
|
this.form.fileList = files;
|
|
this.$refs.form.validateField('fileList');
|
|
this.$refs.form.validateField('fileList');
|
|
},
|
|
},
|
|
|
|
+ beforeUpload(file) {
|
|
|
|
+ const isLTM = this.sizeLimit > 0 ? file.size / 1024 / 1024 < this.sizeLimit : true
|
|
|
|
+ let isInAccept = true
|
|
|
|
+ if (this.enclosuresAccept) {
|
|
|
|
+ isInAccept = false
|
|
|
|
+ if (file.type.indexOf('image') != -1) {
|
|
|
|
+ if (this.enclosuresAccept.indexOf('image') != -1) {
|
|
|
|
+ isInAccept = true
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ isInAccept = this.enclosuresAccept.indexOf(file.type) == -1 ? false : true
|
|
|
|
+ }
|
|
|
|
+ if (!isInAccept) {
|
|
|
|
+ this.$message.error(`文件格式错误`)
|
|
|
|
+ } else {
|
|
|
|
+ if (!isLTM) {
|
|
|
|
+ this.$message.error(`文件大小不能超过 ${this.sizeLimit}MB!`)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return isInAccept && isLTM
|
|
|
|
+ },
|
|
// 文件上传中处理
|
|
// 文件上传中处理
|
|
handleFileUploadProgress(event, file, fileList) {
|
|
handleFileUploadProgress(event, file, fileList) {
|
|
this.upload.isUploading = true;
|
|
this.upload.isUploading = true;
|