From bb40a13f057f4b42b53f20bf607143df0487181e Mon Sep 17 00:00:00 2001 From: czx <1216764150@qq.com> Date: Fri, 3 Nov 2023 14:53:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=85=E5=80=BC=E6=8E=92=E8=A1=8C=E7=AD=9B?= =?UTF-8?q?=E9=80=89=E6=88=90=E5=8A=9F=E7=9A=84=E8=AE=A2=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/game/gameAction.go | 6 ++++++ 1 file changed, 6 insertions(+) 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}},