|
@@ -23,6 +23,7 @@ public class ProductController extends BaseController {
|
|
private static final String PRODUCT_DETAIL_PATH = "product/detail";
|
|
private static final String PRODUCT_DETAIL_PATH = "product/detail";
|
|
private static final String PROMOTIONS_LIST_PATH = "product/promotions";
|
|
private static final String PROMOTIONS_LIST_PATH = "product/promotions";
|
|
private static final String INSTRUMENT_PAGE_PATH = "product/instrument";
|
|
private static final String INSTRUMENT_PAGE_PATH = "product/instrument";
|
|
|
|
+ private static final String TEMPORARY_PAGE_PATH = "product/temporary";
|
|
private static final String INSTRUMENT_LIST_PATH = "product/instruelist";
|
|
private static final String INSTRUMENT_LIST_PATH = "product/instruelist";
|
|
private static final String QUALITY_AUTHORRIZE_PATH = "product/qualityauthorize";
|
|
private static final String QUALITY_AUTHORRIZE_PATH = "product/qualityauthorize";
|
|
/** 美博会专题页 */
|
|
/** 美博会专题页 */
|
|
@@ -72,6 +73,14 @@ public class ProductController extends BaseController {
|
|
return INSTRUMENT_PAGE_PATH;
|
|
return INSTRUMENT_PAGE_PATH;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 临时活动页
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/product/temporary.html")
|
|
|
|
+ public String temporary(){
|
|
|
|
+ return TEMPORARY_PAGE_PATH;
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 仪器列表页
|
|
* 仪器列表页
|
|
*/
|
|
*/
|