h5菜谱显示不全的问题

This commit is contained in:
sxu 2025-06-11 12:01:44 +08:00
parent 9f88c9f7ff
commit eee8828ae2
1 changed files with 0 additions and 3 deletions

View File

@ -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);