修改了会员配置的路由12
This commit is contained in:
parent
57583058f6
commit
904c4d5e35
@ -117,6 +117,13 @@ func publicRouter(r *gin.Engine, api controller.Api) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 支付中心
|
||||||
|
payGroup := r.Group("/pay")
|
||||||
|
{
|
||||||
|
// 获取订单支付数据
|
||||||
|
payGroup.POST("/order", api.Pay.GetPayOrder)
|
||||||
|
}
|
||||||
|
|
||||||
// 会员配置
|
// 会员配置
|
||||||
memberGroup := r.Group("/member")
|
memberGroup := r.Group("/member")
|
||||||
{
|
{
|
||||||
@ -337,10 +344,4 @@ func privateRouter(r *gin.Engine, api controller.Api) {
|
|||||||
memberGroup.GET("", api.SystemMember.GetSystemMember)
|
memberGroup.GET("", api.SystemMember.GetSystemMember)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 支付中心
|
|
||||||
payGroup := r.Group("/pay")
|
|
||||||
{
|
|
||||||
// 获取订单支付数据
|
|
||||||
payGroup.POST("/order", api.Pay.GetPayOrder)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user