Bootstrap

js实现下载excel模板

let a = document.createElement("a");
a.href = "./static/excel/stationPowerIoCheck.xlsx";
a.download = "工位通电IO点检表Excel模板.xlsx";
a.style.display = "none";
document.body.appendChild(a);
a.click();
a.remove();
;