这里可以下载一张,也可以下载多张图片,不过是一张一张下载的
// 下载图片
// 点击一键下载图片按钮
DownloadImgList() {
var downLoadList=[]
this.data.imgList.map(item=>{
if(item.selected){
downLoadList.push(item.url)
}
})
if (downLoadList.length == 0) { // 判断数组是否有图片
wx.showToast({
title: '暂无图片下载',
icon: 'none',
duration: 2000
});
return false;
}
// 判断用户是否授权
wx.getSetting({
success: function (res) {
if (res.authSetting["scope.writePhotosAlbum"] == false) {
wx.showToast({
title: '您还未授权保存相册,请授权',
icon: 'none',
duration: 2000
})
wx.openSetting({
success: function (res) {
if (res.authSetting["scope.writePhotosAlbum"] == true) {
// 保存相册
this.dowImg();
}
if (res.authSettin