Browse Source

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

Roc 3 năm trước cách đây
mục cha
commit
4295497288
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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)
 		//添加完成,清除缓存