|
@@ -23,8 +23,8 @@ Page({
|
|
|
productNum: 0,
|
|
|
thirdPrizeNum: 0,
|
|
|
goodsType: 1,
|
|
|
- goodsItemList: []
|
|
|
-
|
|
|
+ goodsItemList: [],
|
|
|
+ showCustomPreview: false
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -228,9 +228,23 @@ Page({
|
|
|
toLookHitPhoto(e) {
|
|
|
console.log(e)
|
|
|
let url = e.currentTarget.dataset.src;
|
|
|
- wx.previewImage({
|
|
|
- current: url, // 当前显示图片的http链接
|
|
|
- urls: [url] // 需要预览的图片http链接列表
|
|
|
+
|
|
|
+ this.setData({
|
|
|
+ showCustomPreview: true,
|
|
|
+ previewImgSrc: url,
|
|
|
})
|
|
|
+
|
|
|
+ // url = 'https://ks3-cn-shanghai.ksyun.com/pb001/web/hsay/publicPath/a2623624-caf1-4877-99d0-c9355984e964.jpg';
|
|
|
+ // // url = 'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fimg.jj20.com%2Fup%2Fallimg%2Ftp05%2F19100120461512E-0-lp.jpg&refer=http%3A%2F%2Fimg.jj20.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1642243223&t=d67f73c97f32e30932e5ee49bbce6dbd'
|
|
|
+
|
|
|
+ // wx.previewImage({
|
|
|
+ // current: url, // 当前显示图片的http链接
|
|
|
+ // urls: [url] // 需要预览的图片http链接列表
|
|
|
+ // })
|
|
|
},
|
|
|
+ closePreviewImage() {
|
|
|
+ this.setData({
|
|
|
+ showCustomPreview: false
|
|
|
+ })
|
|
|
+ }
|
|
|
})
|