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