From 80f38d720d7c2dca0a67b60d4cc0a6e6e5cc522d Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期一, 04 九月 2023 15:55:30 +0800 Subject: [PATCH] 修改后台社区动态加载不出来 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java index 7937081..9f7c532 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java @@ -170,11 +170,14 @@ BeanUtils.copyProperties(comEventVO, comEvent); LoginUserInfoVO loginUserInfo = getLoginUserInfo(); if (isNull(comEventVO.getAppId())){ - String appId = userService.detailUser(loginUserInfo.getUserId()).getData().getAppId(); +// String appId = userService.detailUser(loginUserInfo.getUserId()).getData().getAppId(); + String appId = getAppId(); comEvent.setAppId(appId); } + comEvent.setCommunityId(loginUserInfo.getCommunityId()); LoginUserInfoVO loginUserInfo1 = this.getLoginUserInfo(); - loginUserInfo1.setType(userService.detailUser(loginUserInfo.getUserId()).getData().getType()); +// loginUserInfo1.setType(userService.detailUser(this.getUserId()).getData().getType()); + loginUserInfo1.setType(loginUserInfo.getType()); return comEventService.pageByComEvent(comEvent, pagination,loginUserInfo1); } @@ -336,7 +339,7 @@ @GetMapping("/status/calculate") public R calculate(@RequestParam(value = "level",required = false)Integer level,@RequestParam(value = "id",required = false)Long id) { LoginUserInfoVO loginUserInfo = getLoginUserInfo(); - loginUserInfo.setType(userService.detailUser(loginUserInfo.getUserId()).getData().getType()); +// loginUserInfo.setType(userService.detailUser(loginUserInfo.getUserId()).getData().getType()); return comEventService.calculate(loginUserInfo,level,id); } -- Gitblit v1.7.1