蛋蛋星球-客户端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

hdl_user.go 16 KiB

il y a 1 mois
il y a 3 semaines
il y a 1 mois
il y a 3 semaines
il y a 2 semaines
il y a 1 mois
il y a 2 semaines
il y a 3 semaines
il y a 3 semaines
il y a 3 semaines
il y a 3 semaines
il y a 2 semaines
il y a 1 semaine
il y a 2 semaines
il y a 3 semaines
il y a 3 semaines
il y a 2 semaines
il y a 2 semaines
il y a 1 mois
il y a 3 semaines
il y a 3 semaines
il y a 3 semaines
il y a 1 mois
il y a 1 mois
il y a 1 mois
il y a 3 semaines
il y a 3 semaines
il y a 3 semaines
il y a 3 semaines
il y a 1 semaine
il y a 1 semaine
il y a 1 semaine
il y a 1 semaine
il y a 3 semaines
il y a 3 semaines
il y a 1 semaine
il y a 2 semaines
il y a 2 semaines
il y a 2 semaines
il y a 1 semaine
il y a 1 semaine
il y a 2 semaines
il y a 2 semaines
il y a 2 semaines
il y a 2 semaines
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. package hdl
  2. import (
  3. "applet/app/db"
  4. "applet/app/e"
  5. "applet/app/es/hdl"
  6. md2 "applet/app/es/md"
  7. "applet/app/lib/auth"
  8. "applet/app/md"
  9. "applet/app/svc"
  10. "applet/app/utils"
  11. "applet/app/utils/cache"
  12. "applet/app/utils/qrcode"
  13. "code.fnuoos.com/EggPlanet/egg_models.git/src/implement"
  14. "code.fnuoos.com/EggPlanet/egg_models.git/src/model"
  15. "code.fnuoos.com/EggPlanet/egg_system_rules.git/aliyun"
  16. "code.fnuoos.com/EggPlanet/egg_system_rules.git/kuaizhan"
  17. md3 "code.fnuoos.com/EggPlanet/egg_system_rules.git/md"
  18. md4 "code.fnuoos.com/EggPlanet/egg_system_rules.git/rule/egg_energy/md"
  19. es2 "code.fnuoos.com/EggPlanet/egg_system_rules.git/utils/es"
  20. "code.fnuoos.com/go_rely_warehouse/zyos_go_es.git/es"
  21. "code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git/rabbit"
  22. "context"
  23. "encoding/json"
  24. "fmt"
  25. "github.com/gin-gonic/gin"
  26. "github.com/olivere/elastic/v7"
  27. "github.com/syyongx/php2go"
  28. "github.com/tidwall/gjson"
  29. "strings"
  30. "time"
  31. )
  32. // UserInfo
  33. // @Summary 用户信息
  34. // @Tags 用户信息
  35. // @Description 用户信息
  36. // @Accept json
  37. // @Produce json
  38. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  39. // @Success 200 {object} md.UserInfoResp "具体数据"
  40. // @Failure 400 {object} md.Response "具体错误"
  41. // @Router /api/v1/userInfo [get]
  42. func UserInfo(c *gin.Context) {
  43. user := svc.GetUser(c)
  44. res := md.UserInfoResp{
  45. Id: utils.Int64ToStr(user.Id),
  46. Phone: user.Phone,
  47. Nickname: user.Phone,
  48. InviteCode: user.SystemInviteCode,
  49. IsBindExtend: "0",
  50. }
  51. if user.Avatar == "" {
  52. user.Avatar = svc.GetSysCfgStr("default_avatar")
  53. }
  54. if user.Avatar != "" {
  55. res.HeadImg = svc.GetOssUrl(user.Avatar)
  56. }
  57. if user.CustomInviteCode != "" {
  58. res.InviteCode = user.CustomInviteCode
  59. }
  60. if user.ParentUid > 0 {
  61. res.IsBindExtend = "1"
  62. }
  63. e.OutSuc(c, res, nil)
  64. return
  65. }
  66. // InviteCodeUserInfo
  67. // @Summary 邀请码获取用户信息
  68. // @Tags 登录注册
  69. // @Description 邀请码获取用户信息
  70. // @Accept json
  71. // @Produce json
  72. // @Param req body md.InviteCodeUserInfoReq true "注册参数"
  73. // @Success 200 {object} md.InviteCodeUserInfoResp "具体数据"
  74. // @Failure 400 {object} md.Response "具体错误"
  75. // @Router /api/v1/inviteCode/userInfo [post]
  76. func InviteCodeUserInfo(c *gin.Context) {
  77. var req md.InviteCodeUserInfoReq
  78. err := c.ShouldBindJSON(&req)
  79. if err != nil {
  80. err = svc.HandleValidateErr(err)
  81. err1 := err.(e.E)
  82. e.OutErr(c, err1.Code, err1.Error())
  83. return
  84. }
  85. if req.InviteCode == "" {
  86. e.OutErr(c, 400, e.NewErr(400, "邀请码不能为空"))
  87. return
  88. }
  89. userDb := implement.NewUserDb(db.Db)
  90. user, err := userDb.UserGetOneByParams(map[string]interface{}{
  91. "key": "system_invite_code",
  92. "value": req.InviteCode,
  93. })
  94. if user == nil {
  95. user, _ = userDb.UserGetOneByParams(map[string]interface{}{
  96. "key": "custom_invite_code",
  97. "value": req.InviteCode,
  98. })
  99. if user == nil {
  100. e.OutErr(c, 400, e.NewErr(400, "用户不存在"))
  101. return
  102. }
  103. }
  104. nickname := user.Nickname
  105. if nickname == "" {
  106. nickname = user.Phone
  107. }
  108. if php2go.IsNumeric(nickname) {
  109. nickname = utils.HideTrueName(user.Nickname)
  110. }
  111. user = svc.UserImg(user)
  112. res := md.InviteCodeUserInfoResp{
  113. Nickname: nickname,
  114. HeadImg: user.Avatar,
  115. }
  116. e.OutSuc(c, res, nil)
  117. return
  118. }
  119. // UserBindParent
  120. // @Summary 绑定上级-要登陆的
  121. // @Tags 登录注册
  122. // @Description 绑定上级
  123. // @Accept json
  124. // @Produce json
  125. // @Param req body md.InviteCodeUserInfoReq true "注册参数"
  126. // @Success 200 {string} "具体数据"
  127. // @Failure 400 {object} md.Response "具体错误"
  128. // @Router /api/v1/memberCenter/bindParent [post]
  129. func UserBindParent(c *gin.Context) {
  130. var req md.InviteCodeUserInfoReq
  131. err := c.ShouldBindJSON(&req)
  132. if err != nil {
  133. err = svc.HandleValidateErr(err)
  134. err1 := err.(e.E)
  135. e.OutErr(c, err1.Code, err1.Error())
  136. return
  137. }
  138. if req.InviteCode == "" {
  139. e.OutErr(c, 400, e.NewErr(400, "邀请码不能为空"))
  140. return
  141. }
  142. userDb := implement.NewUserDb(db.Db)
  143. user, err := userDb.UserGetOneByParams(map[string]interface{}{
  144. "key": "system_invite_code",
  145. "value": req.InviteCode,
  146. })
  147. if user == nil {
  148. user, _ = userDb.UserGetOneByParams(map[string]interface{}{
  149. "key": "custom_invite_code",
  150. "value": req.InviteCode,
  151. })
  152. if user == nil {
  153. e.OutErr(c, 400, e.NewErr(400, "用户不存在"))
  154. return
  155. }
  156. }
  157. ownUser := svc.GetUser(c)
  158. if ownUser.ParentUid > 0 {
  159. e.OutErr(c, 400, e.NewErr(400, "已有导师"))
  160. return
  161. }
  162. if user.Id == ownUser.Id {
  163. e.OutErr(c, 400, e.NewErr(400, "不能绑定自己"))
  164. return
  165. }
  166. ownUser.ParentUid = user.Id
  167. _, err = db.Db.Where("id=?", ownUser.Id).Cols("parent_uid").Update(ownUser)
  168. if err != nil {
  169. e.OutErr(c, 400, e.NewErr(400, "绑定失败,请重试"))
  170. return
  171. }
  172. initLV := 1
  173. ur := new(model.UserRelate)
  174. ur.ParentUid = user.Id
  175. ur.Uid = ownUser.Id
  176. ur.Level = initLV
  177. ur.InviteTime = ownUser.CreateAt
  178. userRelateDb := implement.NewUserRelateDb(db.Db)
  179. _, err = userRelateDb.UserRelateInsert(ur)
  180. if err != nil {
  181. e.OutErr(c, e.ERR_DB_ORM, err)
  182. return
  183. }
  184. // 插入多级关联
  185. go svc.RoutineMultiRelate(ur.ParentUid, ur.Uid, initLV)
  186. //TODO 绑定成功后 加群之类的怎么处理
  187. if ownUser.ParentUid > 0 {
  188. //TODO::推入mq异步处理
  189. ch, err := rabbit.Cfg.Pool.GetChannel()
  190. if err != nil {
  191. e.OutErr(c, e.ERR_INIT_RABBITMQ, err.Error())
  192. return
  193. }
  194. defer ch.Release()
  195. ch.Publish(md4.EggAppExchange, md4.AddPublicPlatoonUserRelationCommissionReq{RecommendUid: utils.Int64ToStr(ownUser.ParentUid), Uid: utils.Int64ToStr(ownUser.Id)}, md4.EggRoutKeyForAddPublicPlatoonUserRelationCommission)
  196. }
  197. e.OutSuc(c, "success", nil)
  198. return
  199. }
  200. // UpdatePassword
  201. // @Summary 修改密码-不要原密码 换成验证码
  202. // @Tags 账号与安全
  203. // @Description 修改密码
  204. // @Accept json
  205. // @Produce json
  206. // @Param req body md.UpdatePasswordReq true "注册参数"
  207. // @Success 200 string "登录成功返回"
  208. // @Failure 400 {object} md.Response "具体错误"
  209. // @Router /api/v1/memberCenter/updatePassword [post]
  210. func UpdatePassword(c *gin.Context) {
  211. var req md.UpdatePasswordReq
  212. err := c.ShouldBindJSON(&req)
  213. if err != nil {
  214. err = svc.HandleValidateErr(err)
  215. err1 := err.(e.E)
  216. e.OutErr(c, err1.Code, err1.Error())
  217. return
  218. }
  219. user := svc.GetUser(c)
  220. data := svc.AliyunSmsBase(c, "")
  221. //校验短信
  222. err = aliyun.AliyunCheckSms(data["aliyun_sms_id"], data["aliyun_sms_secret"], user.Phone, req.Code)
  223. if err != nil {
  224. e.OutErr(c, 400, e.NewErr(400, "验证码错误,请重试"))
  225. return
  226. }
  227. user.Password = utils.Md5(req.Password)
  228. db.Db.Where("id=?", user.Id).Cols("password").Update(user)
  229. e.OutSuc(c, "success", nil)
  230. return
  231. }
  232. // UpdatePasscode
  233. // @Summary 修改支付宝密码
  234. // @Tags 账号与安全
  235. // @Description 修改支付宝密码
  236. // @Accept json
  237. // @Produce json
  238. // @Param req body md.UpdatePasscodeReq true "注册参数"
  239. // @Success 200 string "登录成功返回"
  240. // @Failure 400 {object} md.Response "具体错误"
  241. // @Router /api/v1/memberCenter/updatePasscode [post]
  242. func UpdatePasscode(c *gin.Context) {
  243. var req md.UpdatePasscodeReq
  244. err := c.ShouldBindJSON(&req)
  245. if err != nil {
  246. err = svc.HandleValidateErr(err)
  247. err1 := err.(e.E)
  248. e.OutErr(c, err1.Code, err1.Error())
  249. return
  250. }
  251. user := svc.GetUser(c)
  252. data := svc.AliyunSmsBase(c, "")
  253. //校验短信
  254. err = aliyun.AliyunCheckSms(data["aliyun_sms_id"], data["aliyun_sms_secret"], user.Phone, req.Code)
  255. if err != nil {
  256. e.OutErr(c, 400, e.NewErr(400, "验证码错误,请重试"))
  257. return
  258. }
  259. user.Passcode = utils.Md5(req.PassCode)
  260. db.Db.Where("id=?", user.Id).Cols("passcode").Update(user)
  261. e.OutSuc(c, "success", nil)
  262. return
  263. }
  264. // InviteUrl
  265. // @Summary 邀请链接
  266. // @Tags 邀请海报
  267. // @Description 邀请链接
  268. // @Accept json
  269. // @Produce json
  270. // @Success 200 {object} md.InviteUrl "登录成功返回"
  271. // @Failure 400 {object} md.Response "具体错误"
  272. // @Router /api/v1/memberCenter/inviteUrl [get]
  273. func InviteUrl(c *gin.Context) {
  274. user := svc.GetUser(c)
  275. link := svc.GetSysCfgStr("kuaizhan_url")
  276. res := md.InviteUrl{
  277. Link: "",
  278. InviteCode: user.SystemInviteCode,
  279. }
  280. if user.CustomInviteCode != "" {
  281. res.InviteCode = user.CustomInviteCode
  282. }
  283. link += "?inviteCode=" + res.InviteCode
  284. EggUserShortLink := md2.EggUserShortLink
  285. boolQueryToItem := elastic.NewBoolQuery() // 创建bool查询
  286. aggsMatch := elastic.NewMatchQuery("link", link) //设置查询条件
  287. boolQueryToItem.Must(aggsMatch)
  288. result, _ := hdl.EsSelectOne(context.Background(), EggUserShortLink, boolQueryToItem, false)
  289. isHas := 0
  290. if result != nil && len(result.Hits.Hits) > 0 {
  291. for _, hit := range result.Hits.Hits {
  292. if hit == nil {
  293. continue
  294. }
  295. jsonByte, _ := hit.Source.MarshalJSON()
  296. if gjson.Get(string(jsonByte), "short_link").String() != "" {
  297. isHas = 1
  298. link = gjson.Get(string(jsonByte), "short_link").String()
  299. }
  300. }
  301. }
  302. if isHas == 0 {
  303. send, _ := kuaizhan.KuaizhanSend(svc.GetSysCfgStr("kuaizhan_app_key"), svc.GetSysCfgStr("kuaizhan_app_secret"), link)
  304. if gjson.Get(send, "url").String() != "" {
  305. var uniqueId = php2go.Md5(link)
  306. oldLink := link
  307. link = gjson.Get(send, "url").String()
  308. tmp := map[string]interface{}{
  309. "uid": user.Id,
  310. "link": oldLink,
  311. "short_link": link,
  312. }
  313. doc, _ := es.FirstDoc(EggUserShortLink, uniqueId)
  314. if doc == nil {
  315. es.CreateDoc(EggUserShortLink, uniqueId, tmp)
  316. } else {
  317. es.UpdateDoc(EggUserShortLink, uniqueId, tmp)
  318. }
  319. }
  320. }
  321. res.Link = link
  322. QRcode := qrcode.GetPNGBase64(link)
  323. QRcode = strings.ReplaceAll(QRcode, "\u0000", "")
  324. res.Qrcode = QRcode
  325. e.OutSuc(c, res, nil)
  326. return
  327. }
  328. // ParentInfo
  329. // @Summary 导师信息
  330. // @Tags 会员中心
  331. // @Description 导师信息
  332. // @Accept json
  333. // @Produce json
  334. // @Success 200 {object} md.ParentInfo "登录成功返回"
  335. // @Failure 400 {object} md.Response "具体错误"
  336. // @Router /api/v1/memberCenter/parentInfo [get]
  337. func ParentInfo(c *gin.Context) {
  338. ownUser := svc.GetUser(c)
  339. if ownUser.ParentUid == 0 {
  340. e.OutSuc(c, md.ParentInfo{}, nil)
  341. return
  342. }
  343. NewUserDb := implement.NewUserDb(db.Db)
  344. user, _ := NewUserDb.GetUser(ownUser.ParentUid)
  345. // 1. 获取会员等级名称
  346. userLevelDb := implement.NewUserLevelDb(db.Db)
  347. level, err := userLevelDb.UserLevelByID(user.Level)
  348. if err != nil {
  349. e.OutErr(c, e.ERR_DB_ORM, nil)
  350. return
  351. }
  352. code := user.SystemInviteCode
  353. if user.CustomInviteCode != "" {
  354. code = user.CustomInviteCode
  355. }
  356. res := md.ParentInfo{
  357. Nickname: user.Nickname,
  358. LevelName: level.LevelName,
  359. InviteCode: code,
  360. HeadImg: svc.GetOssUrl(user.Avatar),
  361. Id: utils.Int64ToStr(user.Id),
  362. Phone: user.Phone,
  363. WechatAccount: user.WechatAccount,
  364. }
  365. e.OutSuc(c, res, nil)
  366. return
  367. }
  368. // Delete
  369. // @Summary 注销账号操作
  370. // @Tags 账号与安全
  371. // @Description 注销账号操作
  372. // @Accept json
  373. // @Produce json
  374. // @Param req body md.DeleteUserReq true "注册参数"
  375. // @Success 200 string "登录成功返回"
  376. // @Failure 400 {object} md.Response "具体错误"
  377. // @Router /api/v1/memberCenter/delete [post]
  378. func Delete(c *gin.Context) {
  379. var req md.DeleteUserReq
  380. err := c.ShouldBindJSON(&req)
  381. if err != nil {
  382. err = svc.HandleValidateErr(err)
  383. err1 := err.(e.E)
  384. e.OutErr(c, err1.Code, err1.Error())
  385. return
  386. }
  387. user := svc.GetUser(c)
  388. data := svc.AliyunSmsBase(c, "")
  389. //校验短信
  390. err = aliyun.AliyunCheckSms(data["aliyun_sms_id"], data["aliyun_sms_secret"], user.Phone, req.Code)
  391. if err != nil {
  392. e.OutErr(c, 400, e.NewErr(400, "验证码错误,请重试"))
  393. return
  394. }
  395. user.State = 3
  396. db.Db.Where("id=?", user.Id).Cols("state").Update(user)
  397. tmp := model.UserDeleteInfo{
  398. Uid: int(user.Id),
  399. Phone: user.Phone,
  400. CreateAt: time.Now(),
  401. }
  402. db.Db.Insert(&tmp)
  403. ch, err := rabbit.Cfg.Pool.GetChannel()
  404. if err == nil {
  405. defer ch.Release()
  406. err = ch.PublishV2(md.EggUserExchange, md.CommUserId{
  407. Uid: utils.Int64ToStr(user.Id),
  408. ParentUid: utils.Int64ToStr(user.ParentUid),
  409. }, md.EggUserDelete)
  410. if err != nil {
  411. ch.PublishV2(md.EggUserExchange, md.CommUserId{
  412. Uid: utils.Int64ToStr(user.Id),
  413. ParentUid: utils.Int64ToStr(user.ParentUid),
  414. }, md.EggUserDelete)
  415. }
  416. }
  417. // 清掉token
  418. cacheKey := fmt.Sprintf(auth.TokenKey, user.Id)
  419. _, err = cache.SetEx(cacheKey, "", 1)
  420. e.OutSuc(c, "success", nil)
  421. return
  422. }
  423. // DeleteInfo
  424. // @Summary 注销账号信息
  425. // @Tags 账号与安全
  426. // @Description 注销账号信息
  427. // @Accept json
  428. // @Produce json
  429. // @Success 200 {object} md.UserDeleteInfo "登录成功返回"
  430. // @Failure 400 {object} md.Response "具体错误"
  431. // @Router /api/v1/memberCenter/delete/info [get]
  432. func DeleteInfo(c *gin.Context) {
  433. user := svc.GetUser(c)
  434. resp := md.UserDeleteInfo{
  435. Url: fmt.Sprintf("%s%s?id=%s&is_hide=1", svc.GetSysCfgStr("wap_host"), "/#/pages/course-detail-page/course-detail-page", "115"),
  436. }
  437. extendUserCount, _ := db.Db.Where("parent_uid=?", user.Id).Count(&model.User{})
  438. NewUserWalletDb := implement.NewUserWalletDb(db.Db)
  439. walletAmount := "0"
  440. wallet, _ := NewUserWalletDb.GetUserVirtualWallet(user.Id)
  441. if wallet != nil {
  442. walletAmount = wallet.Amount
  443. }
  444. NewUserVirtualAmountDb := implement.NewUserVirtualAmountDb(db.Db)
  445. virtualWallet, _ := NewUserVirtualAmountDb.GetUserVirtualAllWallets(user.Id)
  446. virtualAmount1 := "0"
  447. virtualAmount2 := "0"
  448. virtualAmount3 := "0"
  449. settingDb := implement.NewEggEnergyBasicSettingDb(db.Db)
  450. setting, _ := settingDb.EggEnergyBasicSettingGetOne()
  451. if virtualWallet != nil {
  452. for _, v := range *virtualWallet {
  453. if v.CoinId == setting.PersonEggPointsCoinId {
  454. virtualAmount3 = utils.Float64ToStrPrec8(utils.StrToFloat64(v.Amount) + utils.StrToFloat64(virtualAmount3))
  455. }
  456. if v.CoinId == setting.TeamEggPointsCoinId {
  457. virtualAmount3 = utils.Float64ToStrPrec8(utils.StrToFloat64(v.Amount) + utils.StrToFloat64(virtualAmount3))
  458. }
  459. if v.CoinId == setting.PersonEggEnergyCoinId {
  460. virtualAmount2 = utils.Float64ToStrPrec8(utils.StrToFloat64(v.Amount) + utils.StrToFloat64(virtualAmount2))
  461. }
  462. if v.CoinId == setting.TeamEggEnergyCoinId {
  463. virtualAmount2 = utils.Float64ToStrPrec8(utils.StrToFloat64(v.Amount) + utils.StrToFloat64(virtualAmount2))
  464. }
  465. if v.CoinId == setting.ContributionCoinId {
  466. virtualAmount1 = utils.Float64ToStrPrec8(utils.StrToFloat64(v.Amount) + utils.StrToFloat64(virtualAmount1))
  467. }
  468. }
  469. }
  470. score := 60.00
  471. now := time.Now()
  472. esIndex := es2.GetLatestEffectiveIndexFromAlias(now)
  473. esIndexName := md3.EggEnergyUserEggScoreEsAlias + "_" + esIndex
  474. results, _ := es.FirstDoc(esIndexName, esIndex+"_"+utils.Int64ToStr(user.Id))
  475. if results != nil {
  476. var doc md.UserEggFlowReqRespList
  477. json.Unmarshal(results.Source, &doc)
  478. score = doc.ScoreValue
  479. }
  480. uid := user.Id
  481. sql := fmt.Sprintf("SELECT COUNT(*)AS total FROM `public_platoon_user_relation` WHERE father_uid1 = %d OR father_uid2= %d OR father_uid3= %d OR father_uid4= %d OR father_uid5= %d OR father_uid6= %d OR father_uid7= %d OR father_uid8= %d OR father_uid9= %d", uid, uid, uid, uid, uid, uid, uid, uid, uid)
  482. nativeString1, _ := db.QueryNativeString(db.Db, sql)
  483. hasUserCount := "0"
  484. if len(nativeString1) > 0 {
  485. hasUserCount = nativeString1[0]["total"]
  486. }
  487. info := []md.UserDeleteInfoList{
  488. {Title: "贡献值", Content: "贡献值 " + virtualAmount1},
  489. {Title: "能量值", Content: "能量值 " + virtualAmount2},
  490. {Title: "活跃值", Content: "活跃值 " + virtualAmount3},
  491. {Title: "蛋蛋分", Content: "蛋蛋分 " + utils.Float64ToStr(score)},
  492. {Title: "余额", Content: "余额 " + walletAmount},
  493. {Title: "直推好友", Content: "直推好友 " + utils.Int64ToStr(extendUserCount) + " 人"},
  494. {Title: "团队", Content: "团队 " + hasUserCount + " 人"},
  495. }
  496. resp.Info = info
  497. e.OutSuc(c, resp, nil)
  498. return
  499. }