Explorar el Código

update

master
dengbiao hace 3 días
padre
commit
d3dcbf261b
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      app/hdl/hdl_add_friend.go

+ 3
- 1
app/hdl/hdl_add_friend.go Ver fichero

@@ -634,7 +634,9 @@ func MyFansUserList(c *gin.Context) {
var userRelatesUids []string
var userSignInMap = map[int64]interface{}{}
var results []map[string]string
var inviteTotal int
if userRelates != nil {
inviteTotal = len(*userRelates)
for _, userRelate := range *userRelates {
userRelatesUids = append(userRelatesUids, utils.Int64ToStr(userRelate.Uid))
}
@@ -685,7 +687,7 @@ func MyFansUserList(c *gin.Context) {
}

resp := md.MyFansUserListResp{
InviteTotal: len(*userRelates),
InviteTotal: inviteTotal,
ActivityUserNums: activityUserNums,
List: data,
}


Cargando…
Cancelar
Guardar