|
@@ -201,8 +201,9 @@ public class WechatTourismIndexController {
|
|
|
filter.setIsHotspot(1);
|
|
|
|
|
|
MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
- new MyOrderParam.OrderInfo("likeCount",true, null);
|
|
|
+ new MyOrderParam.OrderInfo("recommendationRate",true, null);
|
|
|
new MyOrderParam.OrderInfo("pageViewCount",true, null);
|
|
|
+ new MyOrderParam.OrderInfo("likeCount",true, null);
|
|
|
String orderBy = MyOrderParam.buildOrderBy(myOrderParam, TourismProject.class);
|
|
|
|
|
|
System.out.println(orderBy);
|
|
@@ -288,19 +289,26 @@ public class WechatTourismIndexController {
|
|
|
TourismProject filter = new TourismProject();
|
|
|
filter.setEnable(1);
|
|
|
filter.setDataState(1);
|
|
|
- filter.setIsQualityRecommendation(1);
|
|
|
|
|
|
MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
new MyOrderParam.OrderInfo("recommendationRate",true, null);
|
|
|
+ new MyOrderParam.OrderInfo("pageViewCount",true, null);
|
|
|
+ new MyOrderParam.OrderInfo("likeCount",true, null);
|
|
|
String orderBy = MyOrderParam.buildOrderBy(myOrderParam, TourismProject.class);
|
|
|
|
|
|
- if (pageInfo.getPageNum() != null && pageInfo.getPageSize() != null && pageInfo.getCount() != null) {
|
|
|
- PageMethod.startPage(pageInfo.getPageNum(), pageInfo.getPageSize(), pageInfo.getCount());
|
|
|
- }
|
|
|
+
|
|
|
+ int pageNum = pageInfo.getPageNum() != null ? pageInfo.getPageNum() : 1;
|
|
|
+ int pageSize = pageInfo.getPageSize() != null ? pageInfo.getPageSize() : 8;
|
|
|
+
|
|
|
+ int offset = (pageNum - 1) * pageSize + 2; // 跳过前两条数据
|
|
|
+
|
|
|
+ PageMethod.startPage(offset / pageSize + 1, pageSize);
|
|
|
+
|
|
|
List<TourismProject> list = tourismProjectService.getTourismProjectList(filter, orderBy);
|
|
|
|
|
|
MyPageData<IndexDestinationProjectVo> pageData = MyPageUtil.makeResponseData(list, IndexDestinationProjectVo.class);
|
|
|
List<IndexDestinationProjectVo> voList = pageData.getDataList();
|
|
|
+
|
|
|
voList.stream().forEach(o->{
|
|
|
|
|
|
TourismFile filter1 = new TourismFile();
|
|
@@ -360,15 +368,7 @@ public class WechatTourismIndexController {
|
|
|
tourismProjectVo.setTourismContent(MapConvertUtils.convertObjectToMap(tourismContent));
|
|
|
}
|
|
|
|
|
|
- //二维码路径赋值
|
|
|
-// tourismProjectVo.setContactCode("[{\"name\":\"微信图片_20241021154757.png\",\"downloadUri\":\"/admin/app/tourTourismProjectTravelNotes/download\",\"filename\":\"6b92b75edcc04da1bd6e4af056911730.png\",\"uploadPath\":\"image/TourTourismProjectTravelNotes/contactCode\"}]");
|
|
|
-// List<String> urlConvertList = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourismProjectVo.getContactCode());
|
|
|
-// if(CollectionUtils.isNotEmpty(urlConvertList)) {
|
|
|
-// tourismProjectVo.setContactCodeConvert(urlConvertList.get(0));
|
|
|
-// }
|
|
|
- if(tourismProjectVo != null) {
|
|
|
- tourismProjectVo.setContactCodeConvert("https://v.xiaoyaotravel.com/image/ContactQRCode/tourism.png");
|
|
|
- }
|
|
|
+
|
|
|
return ResponseResult.success(tourismProjectVo);
|
|
|
}
|
|
|
|