本文为大家分享了微信小程序红包功能的具体代码,供大家参考,具体内容如下
首先说明一点:微信小程序红包功能一定记得用企业付款到钱包功能,别用微信的现金红包接口,否则你就有踩不完的坑。
直接上代码了
微信小程序代码:
index.js
//抢红包相关
view_moneysure: function () {
var that = this;
wx.request({
url: app.globalData.baseurl +’api/wxopen/applet/grab’,//这个链接是后端写的
header: {
‘Content-Type’: ‘application/x-www-form-urlencoded’
},
data: {
openid: app.globalData.openid,
auth: app.globalData.pcUserInfo.auth
},
method: ‘POST’,
success: function (response) {
console.log(response);
if (response.data.status==1){
that.setData({
paymsg: response.data.total_amount+’元\n现金红包’,
paymsg2: ‘恭喜您\n成功领取下单红包奖励’
}