1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- const WXAPI = require('apifm-wxapi')
- /**
- * type: order 支付订单 recharge 充值 paybill 优惠买单
- * data: 扩展数据对象,用于保存参数
- */
- function wxpay(type, money, orderId, redirectUrl, data, content) {
- const postData = {
- token: wx.getStorageSync('token'),
- money: money,
- remark: "在线充值",
- content: content ? content : ''
- }
- 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
- };
- }
- if (type === 'payTz') {
- postData.remark = "购买团长 :" + money;
- postData.nextAction = {
- type: 14
- };
- }
- postData.payName = postData.remark;
- if (postData.nextAction) {
- postData.nextAction = JSON.stringify(postData.nextAction);
- }
- const url = wx.getStorageSync('wxpay_api_url')
- WXAPI.payVariableUrl(url ? url : '/pay/wx/wxapp', 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
- }
|