Authored by 郭成尧

discount-info

... ... @@ -232,7 +232,7 @@ let getProductData = (data) => {
let bundleData = _.get(info[4], 'data', null);
/* 套装 */
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 1) {
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 1) {
finalResult.bundleData = {
title: '优惠套装',
href: helpers.urlFormat('/product/bundle/detail', {skn: result.product_skn}),
... ... @@ -245,7 +245,7 @@ let getProductData = (data) => {
}
/* 量贩 */
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 2) {
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 2) {
finalResult.discount = _.get(bundleData, 'bundleInfo.bundleCount', 1);
}
... ...