This commit is contained in:
aozhiwei 2024-11-29 10:45:38 +08:00
parent e43a0b5b16
commit c76277efd9

View File

@ -58,3 +58,10 @@ func (this *InAppShopApi) Purchase(c *gin.Context) {
rspObj.OrderId = orderModel.OrderId rspObj.OrderId = orderModel.OrderId
c.JSON(200, rspObj) c.JSON(200, rspObj)
} }
func (this *InAppShopApi) OrderInfo(c *gin.Context) {
s := c.MustGet(constant.SESSION_KEY).(common.Session)
if s == nil {
return
}
}