标准/译文申请 问题修改
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user