Browse Source

美博会专题页面跳转

Aslee 4 years ago
parent
commit
a9d1284f93

+ 10 - 0
src/main/java/com/caimei/www/controller/unlimited/ProductController.java

@@ -24,6 +24,8 @@ public class ProductController extends BaseController {
 	private static final String PROMOTIONS_LIST_PATH = "product/promotions";
     private static final String INSTRUMENT_PAGE_PATH = "product/instrument";
     private static final String INSTRUMENT_LIST_PATH = "product/instruelist";
+    /** 美博会专题页 */
+    private static final String BEAUTY_TOP_PATH = "product/beautytopic";
 
     private ProductService productService;
     @Autowired
@@ -77,4 +79,12 @@ public class ProductController extends BaseController {
         return INSTRUMENT_LIST_PATH;
     }
 
+    /**
+     * 美博会专题页
+     */
+    @GetMapping("/product/beautytopic.html")
+    public String beautytopic() {
+        return BEAUTY_TOP_PATH;
+    }
+
 }