|
@@ -369,6 +369,16 @@ public class ProductController extends BaseController {
|
|
|
model.addAttribute("pageId", id);
|
|
|
return CLOUD_BEAUTY_PATH;
|
|
|
}
|
|
|
+ @GetMapping("/quickOperation/operation-{id}.html")
|
|
|
+ public String quickOperation(final Model model, @PathVariable("id") Integer id) {
|
|
|
+ // 活动专题页
|
|
|
+ Integer pageId = singlePageService.getBeautyPageIdById(id);
|
|
|
+ if (pageId == null) {
|
|
|
+ return super.errorPath();
|
|
|
+ }
|
|
|
+ model.addAttribute("pageId", id);
|
|
|
+ return CLOUD_BEAUTY_PATH;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 优惠券说明页
|