From a1e30f41fa0ff29822f5665f3a4aecd659890fc0 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期日, 15 八月 2021 12:13:50 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java | 29 +++++++++++++++++++++-------- 1 files changed, 21 insertions(+), 8 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java index c219310..88f8d53 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java @@ -45,8 +45,10 @@ @ApiOperation(value = "分页获取社区动态",response = ComActDynVO.class) @PostMapping("pagedynamic") public R pageDynamic(@RequestBody ComActDynVO comActDynVO){ - Long communityId = this.getCommunityId(); - comActDynVO.setCommunityId(communityId); + LoginUserInfoVO loginUserInfo = this.getLoginUserInfoSureNoLogin(); + if(loginUserInfo != null){ + comActDynVO.setCommunityId(loginUserInfo.getCommunityId()); + } comActDynVO.setIsTopping(null); comActDynVO.setStatus(1); return communityService.pageDynamic(comActDynVO); @@ -82,8 +84,10 @@ @ApiOperation(value = "分页查询社区活动",response = ComActActivityVO.class) @PostMapping("pageactivity") public R pageActivity(@RequestBody ComActActivityVO comActActivityVO){ - Long communityId = this.getCommunityId(); - comActActivityVO.setCommunityId(communityId); + LoginUserInfoVO loginUserInfo = this.getLoginUserInfoSureNoLogin(); + if(loginUserInfo != null){ + comActActivityVO.setCommunityId(loginUserInfo.getCommunityId()); + } comActActivityVO.setIsApplets(1); Integer status = comActActivityVO.getStatus(); if (null!=status&&status.intValue()==4) { @@ -96,7 +100,11 @@ @GetMapping("detailactivity") @ApiImplicitParam(name ="id",value = "社区活动主键",required = true) public R detailActivity(@RequestParam("id") Long id){ - Long userId = this.getUserId(); + Long userId = null; + LoginUserInfoVO loginUserInfo = this.getLoginUserInfoSureNoLogin(); + if(loginUserInfo != null){ + userId = loginUserInfo.getUserId(); + } return communityService.detailActivity(id,userId); } @@ -142,7 +150,7 @@ return R.fail("人员类型错误"); } activitySignVO.setType(type); - return communityService.listActivitySign(activitySignVO); + return communityService.listActivitySigns(activitySignVO); } // @ApiOperation(value = "新增社区动态浏览记录") @@ -168,9 +176,14 @@ @ApiOperation(value = "分页查询志愿者团队",response = ComMngVolunteerMngVO.class) @PostMapping("pagevolunteer") public R pageVolunteer(@RequestBody @Validated(PageGroup.class) PageVolunteerDTO pageVolunteerDTO){ - Long communityId = this.getCommunityId(); ComMngVolunteerMngVO comMngVolunteerMngVO=new ComMngVolunteerMngVO(); - comMngVolunteerMngVO.setCommunityId(communityId); + LoginUserInfoVO loginUserInfo = this.getLoginUserInfoSureNoLogin(); + if(loginUserInfo != null){ + comMngVolunteerMngVO.setCommunityId(loginUserInfo.getCommunityId()); + } +// Long communityId = this.getCommunityId(); + +// comMngVolunteerMngVO.setCommunityId(communityId); comMngVolunteerMngVO.setPageNum(pageVolunteerDTO.getPageNum()); comMngVolunteerMngVO.setPageSize(pageVolunteerDTO.getPageSize()); return communityService.pageVolunteer(comMngVolunteerMngVO); -- Gitblit v1.7.1