|
|
|
@ -83,7 +83,7 @@ export default { |
|
|
|
const url = window.URL.createObjectURL(new Blob([response.data])); |
|
|
|
const link = document.createElement('a'); |
|
|
|
link.href = url; |
|
|
|
link.setAttribute('download', 'user_statistics.xlsx'); |
|
|
|
link.setAttribute('download', '用户统计数据表.xlsx'); |
|
|
|
document.body.appendChild(link); |
|
|
|
link.click(); |
|
|
|
document.body.removeChild(link); |
|
|
|
|