|
@@ -134,7 +134,7 @@ export const icons = () => {
|
|
|
const url = "data:text/xls;charset=utf-8,\ufeff" + encodeURIComponent(dataStr);
|
|
|
const link = document.createElement("a");
|
|
|
link.href = url;
|
|
|
- link.download = fileName + ".xls";
|
|
|
+ link.download = fileName + ".xlsx";
|
|
|
link.style.display = 'none';
|
|
|
document.body.appendChild(link);
|
|
|
link.click();
|