|
@@ -83,12 +83,14 @@ public class SysNewsInformationServiceImpl extends BaseServiceImpl<Long, SysNews
|
|
|
|
|
|
boolean isNewer = false;
|
|
|
Date date = new Date();
|
|
|
- String startDateStr = "2020-05-01";
|
|
|
- Date startDate = null;
|
|
|
- try {
|
|
|
- startDate = sdf.parse(startDateStr);
|
|
|
- } catch (ParseException e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
+ Date startDate = queryInfo.getDate();
|
|
|
+ if (startDate == null) {
|
|
|
+ try {
|
|
|
+ String startDateStr = "2020-05-01";
|
|
|
+ startDate = sdf.parse(startDateStr);
|
|
|
+ } catch (ParseException e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
}
|
|
|
if (date.after(startDate)) {
|
|
|
if (user != null) {
|
|
@@ -97,10 +99,10 @@ public class SysNewsInformationServiceImpl extends BaseServiceImpl<Long, SysNews
|
|
|
info.setOrder(1);
|
|
|
if (isNewer) {
|
|
|
info.setLinkUrl(serverContextPath + "/#/auditionActive/1");
|
|
|
- info.setCoverImage("");
|
|
|
+ info.setCoverImage("https://daya-online.oss-cn-beijing.aliyuncs.com/tempActivity/3_1.jpg");
|
|
|
} else {
|
|
|
info.setLinkUrl(serverContextPath + "/#/auditionActive/1");
|
|
|
- info.setCoverImage("");
|
|
|
+ info.setCoverImage("https://daya-online.oss-cn-beijing.aliyuncs.com/tempActivity/3_2.jpg");
|
|
|
}
|
|
|
pageInfos.getRows().add(info);
|
|
|
}
|
|
@@ -129,10 +131,10 @@ public class SysNewsInformationServiceImpl extends BaseServiceImpl<Long, SysNews
|
|
|
if (date.after(startDate)) {
|
|
|
if (isNewer) {
|
|
|
info.setLinkUrl(serverContextPath + "/#/auditionActive/1");
|
|
|
- info.setCoverImage("");
|
|
|
+ info.setCoverImage("https://daya-online.oss-cn-beijing.aliyuncs.com/tempActivity/5_1.jpg");
|
|
|
} else {
|
|
|
info.setLinkUrl(serverContextPath + "/#/auditionActive/1");
|
|
|
- info.setCoverImage("");
|
|
|
+ info.setCoverImage("https://daya-online.oss-cn-beijing.aliyuncs.com/tempActivity/5_2.jpg");
|
|
|
}
|
|
|
pageInfos.getRows().add(info);
|
|
|
} else {
|