微信小程序,发放优惠券,领取卡券添加到卡包

1.使用微信提供的  send-coupon   发券插件,样式可自定义

    // 发券商户号
                
                    
                        温馨提示:
                        恭喜您有新的优惠券了
                        确定
                    
                  
        

2.领取操作
     

 getcoupon: function(params) {
       this.yhqPop = false;
 }

3.领取卡券到卡包(领取会员卡操作)

   let data = res.data.data;
   // #ifdef MP-WEIXIN
   wx.addCard({
      cardList: [{
       "cardExt":'{"nonce_str":"'+data.nonce_str+'","code":"'+data.code+'","signature":"'+data.signature+'","timestamp":"'+data.timestamp+'"}',
 "cardId": data.cardId
      }],
       success(res) {
           if(res.cardList[0].isSuccess){
                uni.showToast({
                    title: '领取成功',
                    icon: 'none'
                })
            }
        }
    })
  // #endif


 


       

你可能感兴趣的:(微信小程序,uniapp,小程序,微信)