소스 검색

fix(新注册用户):入库时,新增国际区号(int类型)

Roc 3 년 전
부모
커밋
4295497288
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      services/user.go

+ 2 - 2
services/user.go

@@ -214,9 +214,9 @@ func BindWxUser(openid, mobile, email string, areaNum, registerPlatform int) (wx
 			Email:               email,
 			IsRegister:          1,
 			Source:              source,
-			CountryCode:         areaNum,
+			CountryCode:         strconv.Itoa(areaNum),
 			OutboundMobile:      mobile,
-			OutboundCountryCode: areaNum,
+			OutboundCountryCode: strconv.Itoa(areaNum),
 		}
 		tmpUserId, addUserErr := models.AddWxUser(user)
 		//添加完成,清除缓存