绿满眶商城微信小程序-uniapp
zxl
15 小时以前 d1cada30a4b98000ef9c8970f0e2b53ed76e352c
pages/video/video-goods-detail-swiper.vue
@@ -568,12 +568,13 @@
      // }
   },
   onShareAppMessage(e){
      console.log(e)
      const goodsInfo = e.target.dataset.obj;
      console.log(goodsInfo)
      return new Promise((resolve) => {
               this.shareId = '';
               let shareObj ={
                  id:e.id,
                  goodsId:e.goodsId
                  id:goodsInfo.id,
                  goodsId:goodsInfo.goodsId
               }
               this.shareParam.shareOption = JSON.stringify(shareObj)
               userShare(this.shareParam).then(res => {
@@ -581,7 +582,7 @@
                 // 当获取到shareId后,再resolve分享配置
                 resolve({
                  title: this.goodsDetail.goodsName,
                  path: '/pages/product/goods' +'?id='+ e.id + '&goodsId=' + e.goodsId +'&shareId=' + this.shareId,
                  path: '/pages/product/goods' +'?id='+ goodsInfo.id + '&goodsId=' + goodsInfo.goodsId +'&shareId=' + this.shareId,
                  imageUrl: this.goodsDetail.goodsGalleryList[0],
                  success(e) {
                    console.log("分享成功", e);
@@ -595,7 +596,7 @@
                 console.error('获取分享ID失败', err);
                 resolve({
                  title: this.goodsDetail.goodsName,
                  path: '/pages/product/goods' +'?id='+ e.id+ '&goodsId=' + e.goodsId,
                  path: '/pages/product/goods' +'?id='+ goodsInfo.id+ '&goodsId=' + goodsInfo.goodsId,
                  imageUrl: this.goodsDetail.goodsGalleryList[0],
                 });
               });