|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|