diff --git a/app/api/game/gameAction.go b/app/api/game/gameAction.go index 5ff053c..a6ce094 100644 --- a/app/api/game/gameAction.go +++ b/app/api/game/gameAction.go @@ -2172,6 +2172,12 @@ func (action *Action) GetRechargeRank(r *ghttp.Request) { }} bs = append(bs, serverMatch) } + statusMatch := bson.D{{ + "$match", bson.D{{ + "status", 1, + }}, + }} + bs = append(bs, statusMatch) match := bson.D{{ "$match", bson.D{{ "creattime", bson.D{{"$gte", startTimeStr}, {"$lte", endTimeStr}},