handleLongClick(url) {
uni.downloadFile({
url: config.baseUrl + '/download' + url,
success: function (res) {
var tempFilePaths = res.tempFilePath;
uni.saveImageToPhotosAlbum({
filePath: tempFilePaths,
success: function () {
uni.showToast({
title: '图片已保存至相册',
icon:'none'
});
},
fail: function (err) {
console.log(err);
}
});
},
fail: function (err) {
console.log(err);
}
});
},
09-07
02-16
359
