|
|
@ -672,13 +672,16 @@ |
|
|
|
// if (userAgent.match(/Alipay/i) == "alipay") { |
|
|
|
// if (userAgent.match(/Alipay/i) == "alipay") { |
|
|
|
// this.createJSAPIOrder('ALIPAY'); |
|
|
|
// this.createJSAPIOrder('ALIPAY'); |
|
|
|
// } else if (userAgent.match(/MicroMessenger/i) == "micromessenger") { |
|
|
|
// } else if (userAgent.match(/MicroMessenger/i) == "micromessenger") { |
|
|
|
|
|
|
|
if (app.globalData.isClick) { |
|
|
|
this.createJSAPIOrder(); |
|
|
|
this.createJSAPIOrder(); |
|
|
|
|
|
|
|
app.globalData.isClick = false; |
|
|
|
|
|
|
|
} |
|
|
|
// } |
|
|
|
// } |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 创建订单 |
|
|
|
// 创建订单 |
|
|
|
createJSAPIOrder(item) { |
|
|
|
createJSAPIOrder(item) { |
|
|
|
uni.showLoading({ |
|
|
|
uni.showLoading({ |
|
|
|
title:'请求中' |
|
|
|
title: '请求中' |
|
|
|
}) |
|
|
|
}) |
|
|
|
// "微信:WECHAT 支付宝:ALIPAY 银联:UQRCODEPAY", |
|
|
|
// "微信:WECHAT 支付宝:ALIPAY 银联:UQRCODEPAY", |
|
|
|
let phone = ''; |
|
|
|
let phone = ''; |
|
|
@ -699,6 +702,7 @@ |
|
|
|
if (res.return_code == '000000') { |
|
|
|
if (res.return_code == '000000') { |
|
|
|
this.jsapiPay(res.return_data.outTradeNo); |
|
|
|
this.jsapiPay(res.return_data.outTradeNo); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
uni.showToast({ |
|
|
|
uni.showToast({ |
|
|
|
title: res.return_msg, |
|
|
|
title: res.return_msg, |
|
|
|
duration: 2000, |
|
|
|
duration: 2000, |
|
|
@ -709,10 +713,14 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
//唤起支付参数 |
|
|
|
//唤起支付参数 |
|
|
|
jsapiPay(item) { |
|
|
|
jsapiPay(item) { |
|
|
|
|
|
|
|
uni.showLoading({ |
|
|
|
|
|
|
|
title: '请求中' |
|
|
|
|
|
|
|
}) |
|
|
|
let datas = { |
|
|
|
let datas = { |
|
|
|
outTradeNo: item |
|
|
|
outTradeNo: item |
|
|
|
} |
|
|
|
} |
|
|
|
jsapiPay(datas).then(res => { |
|
|
|
jsapiPay(datas).then(res => { |
|
|
|
|
|
|
|
uni.hideLoading(); |
|
|
|
if (res.return_code == '000000') { |
|
|
|
if (res.return_code == '000000') { |
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'WECHAT') { |
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'WECHAT') { |
|
|
|
this.wechatpayRequest(res.return_data); |
|
|
|
this.wechatpayRequest(res.return_data); |
|
|
@ -733,6 +741,7 @@ |
|
|
|
duration: 2000 |
|
|
|
duration: 2000 |
|
|
|
}) |
|
|
|
}) |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
uni.showToast({ |
|
|
|
uni.showToast({ |
|
|
|
title: res.return_msg, |
|
|
|
title: res.return_msg, |
|
|
|
duration: 2000, |
|
|
|
duration: 2000, |
|
|
@ -848,10 +857,11 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
//微信支付 |
|
|
|
//微信支付 |
|
|
|
wechatpayRequest: function(self) { |
|
|
|
wechatpayRequest: function(self) { |
|
|
|
|
|
|
|
let that = this; |
|
|
|
uni.showLoading({ |
|
|
|
uni.showLoading({ |
|
|
|
title: '支付中...' |
|
|
|
title: '支付中...' |
|
|
|
}) |
|
|
|
}) |
|
|
|
if (self.platformType == 1) { |
|
|
|
if (self.platformType == 1 || self.platformType == 5) { |
|
|
|
jweixin.config({ |
|
|
|
jweixin.config({ |
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
appId: self.payParam.acc_resp_fields.app_id, // 必填,公众号的唯一标识 |
|
|
|
appId: self.payParam.acc_resp_fields.app_id, // 必填,公众号的唯一标识 |
|
|
@ -864,8 +874,12 @@ |
|
|
|
jweixin.ready(function() { |
|
|
|
jweixin.ready(function() { |
|
|
|
jweixin.checkJsApi({ |
|
|
|
jweixin.checkJsApi({ |
|
|
|
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
|
|
|
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
|
|
|
success: function(res) {}, |
|
|
|
success: function(res) { |
|
|
|
fail: function(res) {} |
|
|
|
app.globalData.isClick = true; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
fail: function(res) { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
jweixin.chooseWXPay({ |
|
|
|
jweixin.chooseWXPay({ |
|
|
|
appId: self.payParam.acc_resp_fields.app_id, |
|
|
|
appId: self.payParam.acc_resp_fields.app_id, |
|
|
@ -883,11 +897,16 @@ |
|
|
|
title: '支付成功' |
|
|
|
title: '支付成功' |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
cancel: function(r) {}, |
|
|
|
cancel: function(r) { |
|
|
|
fail: function(res) {} |
|
|
|
app.globalData.isClick = true; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
fail: function(res) { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
jweixin.error(function(res) { |
|
|
|
jweixin.error(function(res) { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
uni.showToast({ |
|
|
|
uni.showToast({ |
|
|
|
icon: 'none', |
|
|
|
icon: 'none', |
|
|
|
title: '支付失败了', |
|
|
|
title: '支付失败了', |
|
|
@ -924,11 +943,16 @@ |
|
|
|
title: '支付成功' |
|
|
|
title: '支付成功' |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
cancel: function(r) {}, |
|
|
|
cancel: function(r) { |
|
|
|
fail: function(res) {} |
|
|
|
app.globalData.isClick = true; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
fail: function(res) { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
jweixin.error(function(res) { |
|
|
|
jweixin.error(function(res) { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
uni.showToast({ |
|
|
|
uni.showToast({ |
|
|
|
icon: 'none', |
|
|
|
icon: 'none', |
|
|
|
title: '支付失败了', |
|
|
|
title: '支付失败了', |
|
|
@ -942,6 +966,7 @@ |
|
|
|
alipayApi.tradePay({ |
|
|
|
alipayApi.tradePay({ |
|
|
|
tradeNO: item |
|
|
|
tradeNO: item |
|
|
|
}, function(res) { |
|
|
|
}, function(res) { |
|
|
|
|
|
|
|
app.globalData.isClick = true; |
|
|
|
// alert(JSON.stringify(res)); |
|
|
|
// alert(JSON.stringify(res)); |
|
|
|
//支付完成的逻辑 |
|
|
|
//支付完成的逻辑 |
|
|
|
}); |
|
|
|
}); |
|
|
|