🎨 优化群成员显示效果

This commit is contained in:
李寻欢
2024-07-11 15:46:49 +08:00
parent e1c2eb78aa
commit d802cbd6ca
4 changed files with 182 additions and 160 deletions

View File

@@ -25,6 +25,19 @@ func GetGroupUsers(ctx *gin.Context) {
ctx.String(http.StatusInternalServerError, "查询失败: %s", err.Error())
return
}
result := map[string]any{
"records": records,
}
// 循环数据,统计健在成员
var isOkCount int
for _, record := range records {
if record.IsMember {
isOkCount++
}
}
result["isOkCount"] = isOkCount
// 暂时先就这样写着,跑通了再改
ctx.JSON(http.StatusOK, records)
ctx.JSON(http.StatusOK, result)
}