diff --git a/server/wheelserver/api/v1/inapp_shop/inapp_shop.go b/server/wheelserver/api/v1/inapp_shop/inapp_shop.go index 84232e20..4a2bd369 100644 --- a/server/wheelserver/api/v1/inapp_shop/inapp_shop.go +++ b/server/wheelserver/api/v1/inapp_shop/inapp_shop.go @@ -69,4 +69,14 @@ func (this *InAppShopApi) OrderInfo(c *gin.Context) { f5.RspErr(c, 1, "not found") return } + rspObj := struct { + vo.BaseVo + Data struct { + OrderId string `json:"order_id"` + Status int32 `json:"status"` + } `json:"data"` + }{} + rspObj.Data.OrderId = orderModel.OrderId + rspObj.Data.Status = orderModel.Status + c.JSON(200, rspObj) }