增加配置

This commit is contained in:
qiyunfanbo126.com 2024-07-10 15:39:18 +08:00
parent 56effeba55
commit 90ab69ed95
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ func (this *YouChuClient) Login(code string) (Code int, response front.YouChuLog
return errorcode.SystemError, response
}
post, err := this.doPost(url, partnerTxSriNo, "crecard.getCustomerInfo", bytes)
var rq, _ = json.Marshal(request)
utils.Log(nil, "YouChuLogin", string(post), string(rq), err)
if err != nil {
var rq, _ = json.Marshal(request)
utils.Log(nil, "YouChuLogin", string(post), string(rq), err)
return errorcode.SystemError, response
}
responseData := DecryptResponse(string(post), false)