From 7934b253b048aa2da2e82da93f159a61e3235441 Mon Sep 17 00:00:00 2001 From: sxy <3187870250@qq.com> Date: Fri, 27 Jun 2025 11:11:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E7=94=B1=E8=AE=A4?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/router/bundle.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/router/bundle.go b/pkg/router/bundle.go index d06d9fb..a3ade1d 100644 --- a/pkg/router/bundle.go +++ b/pkg/router/bundle.go @@ -12,6 +12,7 @@ func BundleRouter(r *gin.RouterGroup) { bundleRoute := r.Group("bundle") bundleRoute.Use(middleware.CheckWebLogin(service.AccountProvider)) bundleAppRoute := r.Group("bundle") + bundleAppNoAuthRoute := r.Group("bundle") bundleAppRoute.Use(middleware.CheckLogin(service.AccountFieeProvider)) // 套餐 { @@ -56,10 +57,13 @@ func BundleRouter(r *gin.RouterGroup) { bundleAppRouteV2 := bundleAppRoute.Group("app/system/v2") { bundleAppRouteV2.POST("bundle-list", bundle.BundleListH5V2) - bundleAppRouteV2.POST("bundle-detail", bundle.BundleDetailV2) bundleAppRouteV2.POST("add-value/only", bundle.OnlyAddValueListByOrderNo) } + bundleAppNoAuthRouteV2 := bundleAppNoAuthRoute.Group("app/system/v2") + { + bundleAppNoAuthRouteV2.POST("bundle-detail", bundle.BundleDetailV2) + } } }