From c2fd9e68f9f45fbafb8d7d465dca033497da3468 Mon Sep 17 00:00:00 2001 From: wolter Date: Fri, 6 Dec 2024 21:30:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BE=AE=E4=BF=A1=E6=94=AF=E4=BB=98fix?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controllers/front/payment_controller.go | 13 +++- front/templates/index.html | 62 ++++++++----------- 2 files changed, 39 insertions(+), 36 deletions(-) diff --git a/app/http/controllers/front/payment_controller.go b/app/http/controllers/front/payment_controller.go index 39b7bfd..04ca0ea 100644 --- a/app/http/controllers/front/payment_controller.go +++ b/app/http/controllers/front/payment_controller.go @@ -235,5 +235,16 @@ func WxJsApiPay(c *gin.Context) { req.ClientIp = c.ClientIP() rsp, code := thirdpay.WxJsApiPay(*req) - controllers.ApiRes(c, rsp, code, rsp.ThirdMsg) + if code == errorcode.Success { + c.HTML(http.StatusOK, "index.html", gin.H{ + "appId": rsp.AppId, + "timeStamp": rsp.TimeStamp, + "nonceStr": rsp.NonceStr, + "package": rsp.Package, + "signType": rsp.SignType, + "paySign": rsp.PaySign, + }) + } else { + controllers.ApiRes(c, rsp, code, rsp.ThirdMsg) + } } diff --git a/front/templates/index.html b/front/templates/index.html index 33c3b32..2b5b0e7 100644 --- a/front/templates/index.html +++ b/front/templates/index.html @@ -6,47 +6,39 @@ 微信授权登录 - - +