Authored by 郭成尧

discount-info

... ... @@ -229,11 +229,10 @@ let getProductData = (data) => {
finalResult.enterStore = info[0];
finalResult.isStudent = data.isStudent;
/* TODO tar add 161125 套装 立省 80 不确定需不需要前端计算 */
let bundleData = _.get(info[4], 'data', null);
if (bundleData) {
/* 套装 */
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 1) {
finalResult.bundleData = {
title: '优惠套装',
href: helpers.urlFormat('/product/bundle/detail', {skn: result.product_skn}),
... ... @@ -245,6 +244,11 @@ let getProductData = (data) => {
};
}
/* 量贩 */
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 2) {
finalResult.discount = _.get(bundleData, 'bundleInfo.bundleCount', 1);
}
Object.assign(finalResult.feedbacks, info[1]);
/* 如果有咨询,显示咨询,否则显示常见问题 */
... ...