by Robin at 20240102; fix
This commit is contained in:
parent
c20e3ac9c9
commit
da9b6b522b
|
@ -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).
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Reference in New Issue