From e1bd36698945be4d2bd1b63e936fd9d2db749576 Mon Sep 17 00:00:00 2001 From: wolter Date: Mon, 12 Aug 2024 13:42:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8D=E5=8F=B0=EF=BC=8C=E5=93=8D=E5=BA=94fi?= =?UTF-8?q?x?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/http/controllers/api.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/http/controllers/api.go b/app/http/controllers/api.go index 1b7f4c7..8aa0ac2 100644 --- a/app/http/controllers/api.go +++ b/app/http/controllers/api.go @@ -3,6 +3,7 @@ package controllers import ( "PaymentCenter/app/constants/common" "PaymentCenter/app/constants/errorcode" + "PaymentCenter/app/constants/pojo" "PaymentCenter/app/http/entities/front" "PaymentCenter/app/models/orderrequestlogmodel" "PaymentCenter/app/services" @@ -42,7 +43,7 @@ func ApiRes(c *gin.Context, data interface{}, code int, msg ...string) { } // 加密数据 if code == errorcode.Success { - if apiRsp, ok := data.(front.ApiResponse); ok { + if apiRsp, ok := data.(front.ApiResponse); ok && appCheckInfo.App.KeyType != pojo.NO_CRYPT { apiRsp.Order, code = api.EnCrypt(appCheckInfo.App, apiRsp.Order) if code != errorcode.Success { message = errorcode.GetMsg(code, "")