diff --git a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue index e9b882fb0..0c8a0fec4 100644 --- a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue +++ b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue @@ -429,7 +429,7 @@ export default { exportName (name) { const params = { ...this.StandardApplyForEOPage, - exportFileName: name, + exportFileName: name ? name : '标准及译文获取申请', ids: this.selectedList.length > 0 ? this.selectedList.join(',') : '', }; axios({ @@ -451,7 +451,7 @@ export default { link.style.display = 'none'; const objectUrl = URL.createObjectURL(blob); link.href = objectUrl; - link.download = name + '.xlsx'; + link.download = name ? name : '标准及译文获取申请' + '.xlsx'; link.click(); URL.revokeObjectURL(objectUrl); }