excel支持上传csv
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -476,7 +476,7 @@ const uploadFile = (file, item) => { | ... | @@ -476,7 +476,7 @@ const uploadFile = (file, item) => { |
| 476 | return Promise.resolve(); | 476 | return Promise.resolve(); |
| 477 | } | 477 | } |
| 478 | if (item.isExcel) { | 478 | if (item.isExcel) { |
| 479 | const isExcel = file.file.type === 'application/vnd.ms-excel' || file.file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; | 479 | const isExcel = file.file.type === 'application/vnd.ms-excel' || file.file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' || file.file.type == 'text/csv'; |
| 480 | if (!isExcel) { | 480 | if (!isExcel) { |
| 481 | uploadRef.value["ref" + item.field].handleRemove(file); | 481 | uploadRef.value["ref" + item.field].handleRemove(file); |
| 482 | ElMessage.error('上传文件只能是 .xls, .xlsx 格式'); | 482 | ElMessage.error('上传文件只能是 .xls, .xlsx 格式'); | ... | ... |
-
Please register or sign in to post a comment