项目中涉及到文件导出,分xml和excel导出.不同的文件导出格式不同,需要根据文件类型判断导出格式. exportAllData(val){ //全部导出 if(!val){ this.exportFile(this.exportAllType); }},exportFile(exportType){ let url='';//接口地址 this.$axios.get(url,{responseType: 'arraybuffer'}).then(res => { this.download(…