前端下载多张图片
this.pictureArray.forEach(function(item, index) {
setTimeout(() => {
const link = document.createElement("a");
link.style.display = "none";
link.href = item;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}, index * 1000);
});