feat: 微信支付成功跳转return
This commit is contained in:
parent
964a0808b9
commit
cfec0f5fca
|
@ -241,6 +241,7 @@ func WxJsApiPay(c *gin.Context) {
|
|||
"package": rsp.Package,
|
||||
"signType": rsp.SignType,
|
||||
"paySign": rsp.PaySign,
|
||||
"returnUrl": rsp.ReturnUrl,
|
||||
})
|
||||
} else {
|
||||
utils.Log(c, "", "WxJsApiPay,支付失败code=", code, "msg=", rsp.ThirdMsg)
|
||||
|
|
|
@ -42,4 +42,5 @@ type WxJsApiPayResponse struct {
|
|||
SignType string `json:"signType"`
|
||||
PaySign string `json:"paySign"`
|
||||
ThirdMsg string `json:"third_msg"`
|
||||
ReturnUrl string
|
||||
}
|
||||
|
|
|
@ -344,6 +344,7 @@ func WxJsApiPay(param front.WxJsApiPayRequest) (response front.WxJsApiPayRespons
|
|||
return response, errorcode.WechatAuthFail
|
||||
}
|
||||
response.PaySign = signValue
|
||||
response.ReturnUrl = task.orderPayRequest.ReturnUrl
|
||||
|
||||
return response, task.code
|
||||
}
|
||||
|
|
|
@ -107,6 +107,7 @@
|
|||
//res.err_msg将在用户支付成功后返回ok,但并不保证它绝对可靠。
|
||||
document.getElementsByClassName('success')[0].style.display = 'block';
|
||||
document.getElementsByClassName('error')[0].style.display = 'none';
|
||||
window.location.href = {{.returnUrl}}; // 跳转
|
||||
} else {
|
||||
document.getElementsByClassName('error')[0].style.display = 'block';
|
||||
document.getElementsByClassName('success')[0].style.display = 'none';
|
||||
|
|
Loading…
Reference in New Issue