by Robin at 20240102; fix

This commit is contained in:
Leufolium 2024-01-02 15:56:04 +08:00
parent c20e3ac9c9
commit da9b6b522b
2 changed files with 6 additions and 4 deletions

View File

@ -13,6 +13,7 @@ import (
"service/bizcommon/util"
"service/dbstruct"
"service/library/logger"
"service/library/mycrypto"
goproto "google.golang.org/protobuf/proto"
@ -24,8 +25,8 @@ func (s *Service) ApiSendVeriCodeBusinessValidate(ctx *gin.Context, req *vericod
ec = errcode.ErrCodeLoginSrvOk
if req.Did == "" {
logger.Info("No need for validation: %v", req.MobilePhone)
return
logger.Info("H5 send : %v", req.MobilePhone)
req.Did = mycrypto.CryptoServiceInstance().SHA256.Encrypt([]byte(req.MobilePhone))
}
resultList := businessvalidator.NewLoginBusinessValidator(ctx, req).

View File

@ -20,6 +20,7 @@ import (
businessvalidator "service/app/mix/service/business_validator"
"service/dbstruct"
"service/library/logger"
"service/library/mycrypto"
"github.com/gin-gonic/gin"
)
@ -29,8 +30,8 @@ func (s *Service) OpSendVeriCodeBusinessValidate(ctx *gin.Context, req *vericode
ec = errcode.ErrCodeLoginSrvOk
if req.Did == "" {
logger.Info("No need for validation: %v", req.MobilePhone)
return
logger.Info("H5 send : %v", req.MobilePhone)
req.Did = mycrypto.CryptoServiceInstance().SHA256.Encrypt([]byte(req.MobilePhone))
}
resultList := businessvalidator.NewLoginBusinessValidator(ctx, req).