Merge branch 'master' of gitee.com:beijing_hongye_huicheng/lilishop

This commit is contained in:
Chopper
2021-07-19 15:01:55 +08:00
11 changed files with 83 additions and 29 deletions

View File

@@ -58,7 +58,7 @@ public class PageDataManagerController {
}
@ApiOperation(value = "页面列表")
@GetMapping("pageDataList")
@GetMapping("/pageDataList")
public ResultMessage<IPage<PageDataListVO>> pageDataList(PageVO pageVO, PageDataDTO pageDataDTO) {
return ResultUtil.data(pageDataService.getPageDataList(pageVO, pageDataDTO));
}

View File

@@ -111,8 +111,8 @@ public class StoreManagerController {
@ApiOperation(value = "查询一级分类列表")
@ApiImplicitParam(name = "storeId", value = "店铺id", required = true, dataType = "String", paramType = "path")
@GetMapping(value = "/ManagementCategory/{storeId}")
public ResultMessage<List<CategoryVO>> firstCategory(String storeId) {
@GetMapping(value = "/managementCategory/{storeId}")
public ResultMessage<List<CategoryVO>> firstCategory(@PathVariable String storeId) {
return ResultUtil.data(this.storeDetailService.goodsManagementCategory(storeId));
}