傅行帆 6 년 전
부모
커밋
423d544d63
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    2
      CODE/smart-community/app-api/src/main/java/com/community/huiju/controller/AssembleController.java

+ 3
- 2
CODE/smart-community/app-api/src/main/java/com/community/huiju/controller/AssembleController.java 파일 보기

@@ -81,8 +81,9 @@ public class AssembleController extends BaseController {
81 81
 		indexMap.put("menuList",menuList);
82 82
 		indexMap.put("bannerList",toBannerList);
83 83
 		indexMap.put("messageTotal",totalMap.get("messageTotal"));
84
-		indexMap.put("hotelMap",hotelRes.getData());
85
-		indexMap.put("shopMap",shopRes.getData());
84
+		indexMap.put("tpHotel",hotelRes.getData());
85
+		indexMap.put("tpShopType",((Map<Object, Object>)shopRes.getData()).get("tpShopType"));
86
+		indexMap.put("tpShopList",((Map<Object, Object>)shopRes.getData()).get("tpShopList"));
86 87
 		indexMap.put("toDoTotal",totalMap.get("toDoTotal"));
87 88
 		responseBean.addSuccess(indexMap);
88 89
 		return responseBean;