|
@@ -112,14 +112,14 @@ Component({
|
|
//保存图片到本地
|
|
//保存图片到本地
|
|
wx.saveImageToPhotosAlbum({
|
|
wx.saveImageToPhotosAlbum({
|
|
filePath: res.tempFilePath,
|
|
filePath: res.tempFilePath,
|
|
- success(res) {
|
|
|
|
|
|
+ success: (res) => {
|
|
wx.showModal({
|
|
wx.showModal({
|
|
title: '存图成功',
|
|
title: '存图成功',
|
|
content: '图片成功保存到相册了,去发朋友圈',
|
|
content: '图片成功保存到相册了,去发朋友圈',
|
|
showCancel:false,
|
|
showCancel:false,
|
|
confirmText:'我知道了',
|
|
confirmText:'我知道了',
|
|
confirmColor:'#72B9C3',
|
|
confirmColor:'#72B9C3',
|
|
- success: function(res) {
|
|
|
|
|
|
+ success: (res) => {
|
|
if (res.confirm) {
|
|
if (res.confirm) {
|
|
console.log('用户点击确定');
|
|
console.log('用户点击确定');
|
|
this.setData({
|
|
this.setData({
|