<el-button type="primary" @click="downloadTemplate"
v-hasPermi="['pipe-network-simulation:dot-position-management:download-import-template']">
下載模板
</el-button>
// 下載導(dǎo)入模板
function downloadTemplate() {
let a = document.createElement("a");
a.href = "/excel/PHD點位導(dǎo)入模板.xlsx";
a.download = "PHD點位導(dǎo)入模板.xlsx";
a.style.display = "none";
document.body.appendChild(a);
a.click();
a.remove();
}
下載成功
參考文獻:https://blog.csdn.net/sincejuly1995/article/details/108270327