解决方法:
使用try_ catch 包裹 async ... await 函数
/**
* 导出
*/
async download () { // 导出功能
try {
const { parkName } = this.formInline
const res:any = await exportInvoice({ parkName })
this.downSteam(res)
} catch (_) {}
}