@@ -468,8 +468,8 @@ public class PointActivityServiceImpl extends ServiceImpl<PointActivityMapper, P
points = calcCumulativeSignPoints(basePoints, nextContinuousDays, rewardList);
nextContinuousDays++;
} else {
- // 断签/过期:过期仍展示基础分,断签展示 0
- points = (vo.getStatus() != null && vo.getStatus() == 4) ? basePoints : 0;
+ // 断签/过期:展示基础分
+ points = basePoints;
}
vo.setPoints(points);