|
@ -122,18 +122,7 @@ var loading = dialog({
|
|
|
paySign: data.sign, // 支付签名
|
|
|
success: function (res) {
|
|
|
// 支付成功后的回调函数
|
|
|
alert(JSON.stringify(res))
|
|
|
if(res.errMsg == "chooseWXPay:ok"){
|
|
|
window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo;
|
|
|
}else{
|
|
|
|
|
|
var errorparams={seqNo:data.seqNo,wxErrorMsg:res.errMsg}
|
|
|
sendPost("third/hy/pay/setPayLogWxFail", errorparams, "json", "post",function(){
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
|
|
|
}, function(res){
|
|
|
window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo;
|
|
|
})
|
|
|
}
|
|
|
window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo;
|
|
|
},
|
|
|
cencel:function(res){
|
|
|
// 支付取消回调函数
|
|
@ -141,7 +130,12 @@ var loading = dialog({
|
|
|
},
|
|
|
fail: function(res){
|
|
|
// 支付失败回调函数
|
|
|
//alert(JSON.stringify(res));
|
|
|
var errorparams={seqNo:data.seqNo,wxErrorMsg:res.errMsg}
|
|
|
sendPost("third/hy/pay/setPayLogWxFail", errorparams, "json", "post",function(){
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
|
|
|
}, function(res){
|
|
|
window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo;
|
|
|
})
|
|
|
}
|
|
|
});
|
|
|
}else{
|
|
@ -198,11 +192,11 @@ function judgeWxVersion(name){
|
|
|
else
|
|
|
{
|
|
|
if ( wechatInfo[1] < "5.0" ) {
|
|
|
loading.close();
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'当前微信低于5.0,不支持微信支付,请升级后支付'}).show();
|
|
|
}else{
|
|
|
ispass=true
|
|
|
}
|
|
|
loading.close();
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'当前微信低于5.0,不支持微信支付,请升级后支付'}).show();
|
|
|
}else{
|
|
|
ispass=true
|
|
|
}
|
|
|
}
|
|
|
return ispass
|
|
|
}
|