This commit is contained in:
aozhiwei 2024-10-28 21:23:05 +08:00
parent a4367ab4db
commit 49347f8203

View File

@ -249,7 +249,10 @@ func (this *InGameApi) GetCircuitRanking(c *gin.Context) {
c.JSON(200, rspObj)
return
}
c.JSON(200, rsp.GetJsonData())
data := map[string]interface{}{}
f5.GetSysLog().Info(rsp.GetRawData())
q5.DecodeJson(rsp.GetRawData(), &data)
c.JSON(200, data)
})
}
@ -274,6 +277,9 @@ func (this *InGameApi) GetCircuitPhaseRanking(c *gin.Context) {
c.JSON(200, rspObj)
return
}
c.JSON(200, rsp.GetJsonData())
data := map[string]interface{}{}
f5.GetSysLog().Info(rsp.GetRawData())
q5.DecodeJson(rsp.GetRawData(), &data)
c.JSON(200, data)
})
}