DengBiao před 1 rokem
rodič
revize
e8ee23475d
1 změnil soubory, kde provedl 8 přidání a 8 odebrání
  1. +8
    -8
      app/customer/hdl/hdl_login.go

+ 8
- 8
app/customer/hdl/hdl_login.go Zobrazit soubor

@@ -178,14 +178,6 @@ func Register(c *gin.Context) {
return
}

now := time.Now()
userDb := db.UserDb{}
userDb.Set()
user, err := userDb.GetUserByPhone(req.Phone)
if err != nil {
e.OutErr(c, e.ERR_DB_ORM, err)
return
}
//TODO::解密
phone := utils.Base64StdDecode(req.Phone)
if phone == "" {
@@ -203,6 +195,14 @@ func Register(c *gin.Context) {
return
}

now := time.Now()
userDb := db.UserDb{}
userDb.Set()
user, err := userDb.GetUserByPhone(req.Phone)
if err != nil {
e.OutErr(c, e.ERR_DB_ORM, err)
return
}
if user == nil {
user = &model.User{
UserId: req.UserId,


Načítá se…
Zrušit
Uložit