|
@@ -325,6 +325,14 @@ public class PageServiceImpl implements PageService {
|
|
}
|
|
}
|
|
List<AnnouncementPo> annlist = announcementMapper.gteannhade();
|
|
List<AnnouncementPo> annlist = announcementMapper.gteannhade();
|
|
map.put("annlist", annlist);
|
|
map.put("annlist", annlist);
|
|
|
|
+ List<CenterImageVo> images = pageMapper.findCenterImageList(source);
|
|
|
|
+ images.forEach(image -> {
|
|
|
|
+ if (StringUtils.isNotEmpty(image.getLink())) {
|
|
|
|
+ image.setLinkType(AppletsLinkUtil.getLinkType(image.getLink()));
|
|
|
|
+ image.setLinkParam(AppletsLinkUtil.getLinkParam(image.getLinkType(), image.getLink()));
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ map.put("centerImage", images);
|
|
return ResponseJson.success(map);
|
|
return ResponseJson.success(map);
|
|
}
|
|
}
|
|
|
|
|