h5菜谱显示不全的问题
This commit is contained in:
parent
9f88c9f7ff
commit
eee8828ae2
|
|
@ -50,7 +50,6 @@ public class CookRecipeH5Controller extends BaseController {
|
|||
@GetMapping({"/reserve/canteen/shopstall/list"})
|
||||
public TableDataInfo getReserveMealCanteenList() {
|
||||
try {
|
||||
startPage();
|
||||
return getDataTable(this.cookRecipeH5Service.getReserveMealCanteenList());
|
||||
} catch (Exception e) {
|
||||
log.error(e.toString(), e);
|
||||
|
|
@ -68,7 +67,6 @@ public class CookRecipeH5Controller extends BaseController {
|
|||
@PostMapping({"/reserve/recipe/detail"})
|
||||
public TableDataInfo getReserveRecipeDetailList(@RequestBody AppletReserveRecipeDTO content) {
|
||||
try {
|
||||
startPage();
|
||||
return getDataTable(this.cookRecipeH5Service.getReserveRecipeDetailList(content));
|
||||
} catch (Exception e) {
|
||||
log.error(e.toString(), e);
|
||||
|
|
@ -90,7 +88,6 @@ public class CookRecipeH5Controller extends BaseController {
|
|||
@PostMapping({"/week/recipe/detail"})
|
||||
public TableDataInfo getWeekRecipeDetailList(@RequestBody @Valid AppletWeekRecipeDTO content) {
|
||||
try {
|
||||
startPage();
|
||||
return getDataTable(this.cookRecipeH5Service.getWeekRecipeDetailList(content));
|
||||
} catch (Exception e) {
|
||||
log.error(e.toString(), e);
|
||||
|
|
|
|||
Loading…
Reference in New Issue