yuliang1112 1 year ago
parent
commit
e5421ca61e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      route/init.go

+ 2 - 2
route/init.go

@@ -156,7 +156,7 @@ func InitRoute(r *gin.Engine) {
 	// 选品广场相关接口
 	// 选品广场相关接口
 	p := r.Group("/youngee/p")
 	p := r.Group("/youngee/p")
 	{
 	{
-		//p.Use(middleware.LoginAuthMiddleware)
-		p.POST("/product/getAllProduct", handler.WrapGetAllProductHandler) // 查询选品广场选品列表
+		p.Use(middleware.LoginAuthMiddleware)
+		p.POST("/product/getAllProduct", handler.WrapGetAllProductHandler) // 查询项目广场项目列表
 	}
 	}
 }
 }