소스 검색

update

master
dengbiao 3 일 전
부모
커밋
d3dcbf261b
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      app/hdl/hdl_add_friend.go

+ 3
- 1
app/hdl/hdl_add_friend.go 파일 보기

@@ -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,
}


불러오는 중...
취소
저장