diff --git a/src/views/modules/report/FAI_detail_report.vue b/src/views/modules/report/FAI_detail_report.vue index 8445c9d..f508519 100644 --- a/src/views/modules/report/FAI_detail_report.vue +++ b/src/views/modules/report/FAI_detail_report.vue @@ -1058,7 +1058,7 @@ export default { const url = window.URL.createObjectURL(blob); const link= document.createElement('a'); link.href = url; - link.download='IPQC检验单明细.xlsx';// 设置下载文件名 + link.download='FAI检验单明细.xlsx';// 设置下载文件名 link.click(); window.URL.revokeObjectURL(url);//释放URL对象 this.downLoading = false diff --git a/src/views/modules/report/FQC_detail_report.vue b/src/views/modules/report/FQC_detail_report.vue index 2fbd458..b82a59b 100644 --- a/src/views/modules/report/FQC_detail_report.vue +++ b/src/views/modules/report/FQC_detail_report.vue @@ -1059,7 +1059,7 @@ export default { const url = window.URL.createObjectURL(blob); const link= document.createElement('a'); link.href = url; - link.download='IPQC检验单明细.xlsx';// 设置下载文件名 + link.download='FQC检验单明细.xlsx';// 设置下载文件名 link.click(); window.URL.revokeObjectURL(url);//释放URL对象 this.downLoading = false