handleDownload(file) {
console.log("Hello-->", file);
const blob = new Blob([file.raw]);
const a = document.createElement("a");
const href = window.URL.createObjectURL(blob); // 创建下载连接
a.href = href;
a.download = file.name || "";
document.body.appendChild(a);
a.click();
document.body.removeChild(a); // 下载完移除元素
window.URL.revokeObjectURL(href); // 释放掉blob对象
},