|
|
|
@ -671,7 +671,7 @@ |
|
|
|
|
// if (userAgent.match(/Alipay/i) == "alipay") { |
|
|
|
|
// this.createJSAPIOrder('ALIPAY'); |
|
|
|
|
// } else if (userAgent.match(/MicroMessenger/i) == "micromessenger") { |
|
|
|
|
this.createJSAPIOrder('WECHAT'); |
|
|
|
|
this.createJSAPIOrder(); |
|
|
|
|
// } |
|
|
|
|
}, |
|
|
|
|
// 创建订单 |
|
|
|
@ -684,7 +684,7 @@ |
|
|
|
|
let datas = { |
|
|
|
|
"qrCodeSN": app.globalData.snNo, |
|
|
|
|
"payUserId": app.globalData.openId, |
|
|
|
|
"payMode": item, |
|
|
|
|
"payMode": app.globalData.platformType, |
|
|
|
|
"totalAmount": this.inputPrice, |
|
|
|
|
"storeDiscountId": this.storeDiscountId, |
|
|
|
|
"userDiscountId": this.memDiscountId, |
|
|
|
@ -709,15 +709,24 @@ |
|
|
|
|
} |
|
|
|
|
jsapiPay(datas).then(res => { |
|
|
|
|
if (res.return_code == '000000') { |
|
|
|
|
if (res.return_data.payParam) { |
|
|
|
|
this.payRequest(res.return_data.payParam); |
|
|
|
|
} else { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '单比金额最多10000000元', |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000 |
|
|
|
|
}) |
|
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'WECHAT') { |
|
|
|
|
this.wechatpayRequest(res.return_data); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'ALIPAY') { |
|
|
|
|
this.alipayRequest(res.return_data.acc_resp_fields.paepay_id); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
|
// this.unionPayRequest(res.return_data); |
|
|
|
|
window.location.href = res.return_data.acc_resp_fields.redirect_url; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.return_msg, |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000 |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.return_msg, |
|
|
|
@ -833,52 +842,133 @@ |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//微信支付 |
|
|
|
|
payRequest: function(self) { |
|
|
|
|
wechatpayRequest: function(self) { |
|
|
|
|
uni.showLoading({ |
|
|
|
|
title: '支付中...' |
|
|
|
|
}) |
|
|
|
|
jweixin.config({ |
|
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
|
appId: self.appId, // 必填,公众号的唯一标识 |
|
|
|
|
timestamp: self.timeStamp, // 必填,生成签名的时间戳 |
|
|
|
|
nonceStr: self.nonceStr, // 必填,生成签名的随机串 |
|
|
|
|
signature: self.sign, // 必填,签名,见附录1 |
|
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
|
}); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
jweixin.ready(function() { |
|
|
|
|
jweixin.checkJsApi({ |
|
|
|
|
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
|
|
|
|
success: function(res) {}, |
|
|
|
|
fail: function(res) {} |
|
|
|
|
if (self.platformType == 1) { |
|
|
|
|
jweixin.config({ |
|
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
|
appId: self.acc_resp_fields.app_id, // 必填,公众号的唯一标识 |
|
|
|
|
timestamp: self.acc_resp_fields.time_stamp, // 必填,生成签名的时间戳 |
|
|
|
|
nonceStr: self.acc_resp_fields.nonce_str, // 必填,生成签名的随机串 |
|
|
|
|
signature: self.acc_resp_fields.pay_sign, // 必填,签名,见附录1 |
|
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
|
}); |
|
|
|
|
jweixin.chooseWXPay({ |
|
|
|
|
appId: self.appId, |
|
|
|
|
timestamp: self |
|
|
|
|
.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
|
|
|
|
nonceStr: self.nonceStr, // 支付签名随机串,不长于 32 位 |
|
|
|
|
package: self.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
|
|
|
|
signType: self.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
|
|
|
|
paySign: self.sign, // 支付签名 |
|
|
|
|
success: function(res) { |
|
|
|
|
// 支付成功后的回调函数 |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '支付成功' |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
cancel: function(r) {}, |
|
|
|
|
fail: function(res) {} |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
jweixin.ready(function() { |
|
|
|
|
jweixin.checkJsApi({ |
|
|
|
|
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
|
|
|
|
success: function(res) {}, |
|
|
|
|
fail: function(res) {} |
|
|
|
|
}); |
|
|
|
|
jweixin.chooseWXPay({ |
|
|
|
|
appId: self.acc_resp_fields.app_id, |
|
|
|
|
timestamp: self.acc_resp_fields |
|
|
|
|
.time_stamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
|
|
|
|
nonceStr: self.acc_resp_fields.nonce_str, // 支付签名随机串,不长于 32 位 |
|
|
|
|
package: self.acc_resp_fields |
|
|
|
|
.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
|
|
|
|
signType: self.acc_resp_fields.sign_type, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
|
|
|
|
paySign: self.acc_resp_fields.pay_sign, // 支付签名 |
|
|
|
|
success: function(res) { |
|
|
|
|
// 支付成功后的回调函数 |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '支付成功' |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
cancel: function(r) {}, |
|
|
|
|
fail: function(res) {} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
jweixin.error(function(res) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
icon: 'none', |
|
|
|
|
title: '支付失败了', |
|
|
|
|
duration: 4000 |
|
|
|
|
jweixin.error(function(res) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
icon: 'none', |
|
|
|
|
title: '支付失败了', |
|
|
|
|
duration: 4000 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
jweixin.config({ |
|
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
|
appId: self.appId, // 必填,公众号的唯一标识 |
|
|
|
|
timestamp: self.timeStamp, // 必填,生成签名的时间戳 |
|
|
|
|
nonceStr: self.nonceStr, // 必填,生成签名的随机串 |
|
|
|
|
signature: self.sign, // 必填,签名,见附录1 |
|
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
|
}); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
jweixin.ready(function() { |
|
|
|
|
jweixin.checkJsApi({ |
|
|
|
|
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
|
|
|
|
success: function(res) {}, |
|
|
|
|
fail: function(res) {} |
|
|
|
|
}); |
|
|
|
|
jweixin.chooseWXPay({ |
|
|
|
|
appId: self.appId, |
|
|
|
|
timestamp: self |
|
|
|
|
.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
|
|
|
|
nonceStr: self.nonceStr, // 支付签名随机串,不长于 32 位 |
|
|
|
|
package: self.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
|
|
|
|
signType: self.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
|
|
|
|
paySign: self.sign, // 支付签名 |
|
|
|
|
success: function(res) { |
|
|
|
|
// 支付成功后的回调函数 |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '支付成功' |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
cancel: function(r) {}, |
|
|
|
|
fail: function(res) {} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
jweixin.error(function(res) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
icon: 'none', |
|
|
|
|
title: '支付失败了', |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
//支付宝支付 |
|
|
|
|
alipayRequest(item) { |
|
|
|
|
//订单对象,从服务器获取 // 注意 如果是 支付宝支付provider固定值就是alipay |
|
|
|
|
uni.requestPayment({ //拿到订单信息后 调用 uniapp的支付接口 唤起支付 |
|
|
|
|
provider: 'alipay', //微信就是 wxpay |
|
|
|
|
orderInfo: item, //支付宝订单数据 从后端拿到的数据 |
|
|
|
|
success: function(res) { |
|
|
|
|
this.show1 = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: "支付成功", |
|
|
|
|
icon: 'success', |
|
|
|
|
duration: 2000 |
|
|
|
|
// success: () => { |
|
|
|
|
// setTimeout(() => { |
|
|
|
|
// uni.switchTab({ |
|
|
|
|
// url: '/pages/index/index' |
|
|
|
|
// }) |
|
|
|
|
// }, 500) |
|
|
|
|
// } |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
fail: function(err) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: "支付失败请稍后再试", |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000 |
|
|
|
|
// success: () => { |
|
|
|
|
// setTimeout(() => { |
|
|
|
|
// uni.switchTab({ |
|
|
|
|
// url: '/pages/my/my' |
|
|
|
|
// }) |
|
|
|
|
// }, 500) |
|
|
|
|
// } |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|