修改了会员配置的路由1
This commit is contained in:
parent
802c789e95
commit
57583058f6
@ -117,13 +117,6 @@ 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")
|
||||||
{
|
{
|
||||||
@ -343,4 +336,11 @@ 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