123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- const WXAPI = require('apifm-wxapi')
- /**
- * type: order 支付订单 recharge 充值 paybill 优惠买单
- * data: 扩展数据对象,用于保存参数
- */
- function wxpay(type, money, orderId, redirectUrl, data) {
- const postData = {
- token: wx.getStorageSync('token'),
- money: money,
- remark: "在线充值",
- }
- if (type === 'order') {
- postData.remark = "支付订单 :" + orderId;
- postData.nextAction = {
- type: 0,
- id: orderId
- };
- }
- if (type === 'paybill') {
- postData.remark = "优惠买单 :" + data.money;
- postData.nextAction = {
- type: 4,
- uid: wx.getStorageSync('uid'),
- money: data.money
- };
- }
- if (type === 'fxsBuy') {
- postData.remark = "购买分销资格";
- postData.nextAction = {
- type: 13
- };
- }
- postData.payName = postData.remark;
- if (postData.nextAction) {
- postData.nextAction = JSON.stringify(postData.nextAction);
- }
- WXAPI.wxpay(postData).then(function (res) {
- if (res.code == 0) {
- // 发起支付
- wx.requestPayment({
- timeStamp: res.data.timeStamp,
- nonceStr: res.data.nonceStr,
- package: res.data.package,
- signType: res.data.signType,
- paySign: res.data.paySign,
- fail: function (aaa) {
- console.error(aaa)
- wx.showToast({
- title: '支付失败:' + aaa
- })
- },
- success: function () {
- // 提示支付成功
- wx.showToast({
- title: '支付成功'
- })
- wx.redirectTo({
- url: redirectUrl
- });
- }
- })
- } else {
- wx.showModal({
- title: '出错了',
- content: JSON.stringify(res),
- showCancel: false
- })
- }
- })
- }
- module.exports = {
- wxpay: wxpay
- }
|