Authored by 陈林

修正参数错误。review by 孙凯。

... ... @@ -466,11 +466,9 @@ function parseActivityTimeLsit(json, focusTime=0) {
activityTimeItem.specialState = 0;
let offsetDate = getDiffDays(date, now2);
let offsetDate = getDiffDays(date, now);
activityTimeItem.specialState = offsetDate < 0 ? 0 : offsetDate;
if (currentTime > activityTimeItem.startTime) {
if(currentTime > activityTimeItem.endTime){
... ...