Authored by 张丽霞

强制活动开始

@@ -21,9 +21,11 @@ const getPageInfo = (pageInfo) => { @@ -21,9 +21,11 @@ const getPageInfo = (pageInfo) => {
21 dest.couponPic = pageInfo.data.couponPic; 21 dest.couponPic = pageInfo.data.couponPic;
22 dest.oldUserCouponPic = pageInfo.data.oldUserCouponPic; 22 dest.oldUserCouponPic = pageInfo.data.oldUserCouponPic;
23 dest.mobile = pageInfo.data.mobile; 23 dest.mobile = pageInfo.data.mobile;
  24 + //强制活动开始,活动上线产品要求这样设置
  25 + pageInfo.data.flag = 1;
24 if (pageInfo.data.flag === 1) { 26 if (pageInfo.data.flag === 1) {
25 dest.bgImg = pageInfo.data.activityNormalPic; 27 dest.bgImg = pageInfo.data.activityNormalPic;
26 - } else if (pageInfo.data.flag !== 1) { 28 + } else {
27 dest.bgImg = pageInfo.data.activityEndPic; 29 dest.bgImg = pageInfo.data.activityEndPic;
28 dest.ended = true; 30 dest.ended = true;
29 } 31 }