本文實例為大家分享了微信小程序?qū)崿F(xiàn)發(fā)紅包的具體代碼,供大家參考,具體內(nèi)容如下
梨樹網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,梨樹網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為梨樹上1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請找那個售后服務(wù)好的梨樹做網(wǎng)站的公司定做!目前此功能尚在內(nèi)測,無法申請。此博文僅示例。
流程效果圖:
圖片1觸發(fā)wx.sendBizRedPacket({})吊起圖片2,點擊開,出現(xiàn)圖片3,關(guān)閉以后出現(xiàn)圖片4。
wx.sendBizRedPacket({})說明及示例:
wx.sendBizRedPacket({ timeStamp: e.timeStamp, nonceStr: e.nonceStr, package: e.package, signType: e.signType, paySign: e.paySign, success: function (res) { console.log('紅包success') let url = config.HTTP_Prize_URL + '/v1/sign_tmp/sendSuccess.do'; let data = { minipid: that.data.minipid, date: that.data.date } console.log('紅包成功以后接口請求參數(shù)數(shù)據(jù):' + JSON.stringify(data)) util.request(url, 'post', data, '正在加載數(shù)據(jù)', function (res) { console.log('紅包成功以后接口返回結(jié)果:' + JSON.stringify(res.data)) }) wx.reLaunch({ url: '../my_prize/my_prize_2?reward=' + res.data.body.reward, }) }, fail: function (res) { console.log('紅包fail') }, complete: function (res) { console.log('紅包complete') // wx.showModal({ // title: '紅包complete', // content: '紅包complete', // }) } })