从前端上传Excel表格
<el-upload
ref="upload"
action
accept="##"
:auto-upload="false"
:show-file-list="false"
:on-change="changeUpload"
>
<el-button>导入表格<el-button>
</el-upload>
js部分
changeUpload(file,fileList){
let form = new FormData();
form.append("file",file.raw);
addExcel(form).then(res=>{
if(res.code=='0'){
console.log('success')
}
}).catch(e=>{
console.log(e)
}