From 3599e428ce5bd5a49e680ea96cadc49f31954b9e Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Wed, 11 Mar 2026 18:12:17 +0800 Subject: [PATCH] =?UTF-8?q?Updata=EF=BC=9A=E8=B0=83=E6=95=B4=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/router/bundle.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/router/bundle.go b/pkg/router/bundle.go index 87c73b25..4967df67 100644 --- a/pkg/router/bundle.go +++ b/pkg/router/bundle.go @@ -21,6 +21,8 @@ func BundleRouter(r *gin.RouterGroup) { bundleClientNoAuthRoute.POST("export/work-cast-info", bundle.ExportWorkCastInfo) bundleClientNoAuthRoute.POST("export/bundle-price-info", bundle.ExportBundlePriceInfo) bundleClientNoAuthRoute.POST("survey/is-send", bundle.IsSendSurvey) + bundleClientNoAuthRoute.POST("survey/bundleInfo", bundle.QuestionnaireSurveyBundleInfo) + bundleClientNoAuthRoute.POST("survey/create", bundle.QuestionnaireSurveyCreate) } bundleClientRoute := bundleRoute.Group("system") { @@ -59,8 +61,6 @@ func BundleRouter(r *gin.RouterGroup) { survey := bundleClientRoute.Group("survey") { survey.POST("list", bundle.QuestionnaireSurveyList) - survey.POST("bundleInfo", bundle.QuestionnaireSurveyBundleInfo) - survey.POST("create", bundle.QuestionnaireSurveyCreate) } }