上传函数封装
const addSubmit = (val) => {if (val.length < 1) {messageTitle('上传文件不能为空', 'warning') } else {const formData = new FormData()formData.append('multipartFile', val[0].raw)account.createAccount(formData).then(res => {const reader = new FileReader();reader.onload = event => {try {const json = JSON.parse(event.target.result);if (json.code === SUCCESSCODE) {messageTitle('上传成功', 'success')} else {messageTitle(json.message, 'error')}} catch (err) {messageTitle('上传失败', 'error')const blob = new Blob([res], { type: 'application/vnd.ms-excel' })const fileName = '失败文件下载'const url = window.URL.createObjectURL(blob)const link = document.createElement('a')link.style.display = 'none'link.href = urllink.setAttribute('download', fileName)document.body.appendChild(link)link.click()document.body.removeChild(link) }};reader.readAsText(res);})}}
下载函数封装
function download(data) {const param = {uuid: data.split('@')[0],fileName: data.split('@')[1]}axios({method: 'post',url,data: param,responseType: 'blob',headers: {'Content-Type': 'application/json;charset=UTF-8',}}).then(res => {if (res.data.type == 'application/json') {handlerResponseError(res.data)} else {const disposition = res.headers['content-disposition']if (disposition == undefined) {return MessageBox.alert('下载失败', '失败', { type: 'error' });}let fileName = disposition && disposition.substring(disposition.indexOf("''") + 2, disposition.length)fileName = decodeURI(fileName)const blobUrl = window.URL.createObjectURL(new Blob([res.data], {type: res.headers['content-type']}))const link = document.createElement('a')link.style.display = 'none'link.href = blobUrllink.setAttribute('download', fileName)document.body.appendChild(link)link.click()document.body.removeChild(link)}}).catch(_ => MessageBox.alert('网络请求失败', '失败', { type: 'error' }))
}function handlerResponseError(data) {const fileReader = new FileReader()fileReader.onload = function () {try {const { res_code, status } = JSON.parse(fileReader.result) if (status == '000_000_0002') {return MessageBox.alert('下载失败', '失败', { type: 'error' });}} catch (err) {console.log('success...')}}fileReader.readAsText(data)
}