Closed fqdltd closed 3 years ago
setTimeout(function() { var _this = this; canvas.draw({ series: _series }).then(() => { uni.showModal({ title: '授权提示', content: "是否将图片保存到手机相册", success: (res) => { if (res.confirm) { com.showLoading();
// 保存到相册 canvas.save({ destWidth: _this.screenWidth, destHeight: _this.backImageHeight }).then(res => { com.hideLoading(); uni.showToast({ title: "保存成功", icon: "none" }); }).catch(err=>{ com.hideLoading(); uni.showToast({ title: "保存失败1", icon: "none" }); }) } else { com.hideLoading(); uni.showToast({ title: "保存失败", icon: "none" }); } } }); }).catch(err => { com.hideLoading(); //console.log('绘制失败!', err) uni.showToast({ title: "保存失败" + err, icon: "none" }); }); }, 500)
errMsg为 getImageInfo:fail download image fail. reason:downloadFile:fail url not in domain
setTimeout(function() { var _this = this; canvas.draw({ series: _series }).then(() => { uni.showModal({ title: '授权提示', content: "是否将图片保存到手机相册", success: (res) => { if (res.confirm) { com.showLoading();