async downloadCode(imgsrc) {
let params = new URL(imgsrc);
let arrnew = params.pathname.split("/");
let nameArr = decodeURIComponent(arrnew).split(","); // 这个是为了解决中文乱码名字错乱问题
axios({
//设置图片路径
url: params.pathname,
//设置请求方法为get请求
method: "get",
//设置相应类型为blob
responseType: "blob",
}).then(
//得到的是一个blob对象
(res) => {
let url = window.URL.createObjectURL(res.data);
const a = document.createElement("a");
a.href = url;
a.download = arrnew[arrnew.length - 1];
a.click();
}
);