Authored by 郭成尧

bug-fixed

@import "layout/swiper";
$swiper-container-height: 232px;
$swiper-container-height: 233px;
.jit-detail-page {
background-color: #f0f0f0;
... ... @@ -20,6 +20,8 @@ $swiper-container-height: 232px;
}
.top {
padding-top: 4px;
padding-bottom: 4px;
margin-bottom: 1PX;
font-size: 26px;
}
... ... @@ -31,6 +33,7 @@ $swiper-container-height: 232px;
.bottom {
font-size: 28px;
margin-bottom: 28px;
padding-bottom: 8px;
}
.swiper-container {
... ...
... ... @@ -454,15 +454,16 @@ function transformJit(packageList) {
discount: pValue.shopping_cut_cost
});
}
result.packages.push(perPackageData);
_.forEach(pValue.goods_list, gValue => {
result.packages[pKey].goods.push({
perPackageData.goods.push({
thumb: gValue.goods_images,
isAdd: gValue.goods_type === 'price_gift',
isGift: gValue.goods_type === 'gift'
});
});
result.packages.push(perPackageData);
});
return result;
}
... ...