<el-button size="mini"><svg-iconicon-class="Icon-Save"style="border: 1px dashed #afb0b2;width: 14px;height: 14px;margin-right: 8px;"></svg-icon><span @click="downLoad">下载模板</span></el-button>
// 下载模板downLoad() {// 调用接口直接下载getPeopleInfo().then((resp) => {// console.log(response);const link = document.createElement("a");const blob = new Blob([resp], {type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",});link.style.display = "none";link.href = URL.createObjectURL(blob);link.setAttribute("download", decodeURI("下载模板.xls"));document.body.appendChild(link);link.click();document.body.removeChild(link);this.exportLoading = false;// 关闭加载状态}).catch(() => {// 关闭加载状态// this.tableLoading = false;});},