|
|
@ -451,4 +451,20 @@ Page({ |
|
|
|
// // imageUrl: 'https://www.baidu.com/my/active3.png' // 可不填,可以是网络路径也可以是本地路径,分享到朋友圈显示的图标
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
changeImg(){ |
|
|
|
wx.chooseImage({ |
|
|
|
count: 1, |
|
|
|
sizeType: ['original', 'compressed'], |
|
|
|
sourceType: ['album', 'camera'], |
|
|
|
success (res) { |
|
|
|
// tempFilePath可以作为img标签的src属性显示图片
|
|
|
|
const tempFilePaths = res.tempFilePaths |
|
|
|
wx.previewImage({ |
|
|
|
urls: [`${tempFilePaths}`], // 当前显示图片的http链接
|
|
|
|
showmenu:true, |
|
|
|
current:'' |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |