| | |
| | | */ |
| | | @GetMapping("/getOrderPage") |
| | | @ApiOperation(value = "获取相关信息",tags = "app用户端-下单页面") |
| | | public R<OrderPageVO> getOrderPage(@RequestParam(value = "communityId",required = false) Integer communityId) { |
| | | return R.ok(appUserService.getOrderPage(communityId)); |
| | | public R<OrderPageVO> getOrderPage(@RequestParam(value = "communityId",required = false) Integer communityId , |
| | | @RequestParam(value = "regionExtend",required = false) String regionExtend) { |
| | | return R.ok(appUserService.getOrderPage(communityId,regionExtend)); |
| | | } |
| | | |
| | | /** |