From b2fce0dc7dc4ea5dec9792a2bc3ceb9d33d6e07b Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期一, 04 九月 2023 13:59:52 +0800
Subject: [PATCH] 修改后台社区动态加载不出来

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventController.java |   26 ++++++++++++++++++++++----
 1 files changed, 22 insertions(+), 4 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 2585439..4bd1365 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
@@ -14,6 +14,7 @@
 import com.panzhihua.common.utlis.CopyUtil;
 import com.panzhihua.common.utlis.StringUtils;
 import com.panzhihua.service_community.entity.ComEvent;
+import com.panzhihua.service_community.service.ComSanShuoExpertService;
 import com.panzhihua.service_community.service.IComEventService;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiImplicitParam;
@@ -50,6 +51,8 @@
     private IComEventService comEventService;
     @Resource
     private UserService userService;
+    @Resource
+    private ComSanShuoExpertService comSanShuoExpertService;
 
 
     /**
@@ -167,10 +170,15 @@
         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);
         }
-        return comEventService.pageByComEvent(comEvent, pagination,this.getLoginUserInfo());
+        comEvent.setCommunityId(loginUserInfo.getCommunityId());
+        LoginUserInfoVO loginUserInfo1 = this.getLoginUserInfo();
+        loginUserInfo1.setType(userService.detailUser(loginUserInfo.getUserId()).getData().getType());
+        loginUserInfo1.setType(loginUserInfo.getType());
+        return comEventService.pageByComEvent(comEvent, pagination,loginUserInfo1);
     }
 
 
@@ -329,8 +337,10 @@
      */
     @ApiOperation("事件各种状态(处理状态1待处理2待验证3专家已受理4专家未受理,拒绝5调解中6已结案归档7调解取消8 已删除)数据统计")
     @GetMapping("/status/calculate")
-    public R calculate() {
-        return comEventService.calculate(getLoginUserInfo());
+    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());
+        return comEventService.calculate(loginUserInfo,level,id);
     }
 
     /**
@@ -368,4 +378,12 @@
         return comEventService.listCommunityScreen();
     }
 
+    /**
+     * 获取事件范围筛选列表
+     * */
+    @GetMapping("/rangeList")
+    public R rangeList(){
+        return comSanShuoExpertService.rangeList();
+    }
+
 }

--
Gitblit v1.7.1