...
|
...
|
@@ -5,6 +5,7 @@ |
|
|
*/
|
|
|
|
|
|
'use strict';
|
|
|
const utils = '../../../utils';
|
|
|
const _ = require('lodash');
|
|
|
const comment = require('./consult-comment');
|
|
|
const bundle = require('./bundle');
|
...
|
...
|
@@ -231,6 +232,8 @@ let getProductData = (data) => { |
|
|
|
|
|
let bundleData = _.get(info[4], 'data', null);
|
|
|
|
|
|
console.log(bundleData);
|
|
|
|
|
|
/* 套装 */
|
|
|
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 1) {
|
|
|
finalResult.bundleData = {
|
...
|
...
|
@@ -247,7 +250,8 @@ let getProductData = (data) => { |
|
|
/* 量贩 */
|
|
|
if (bundleData && _.get(bundleData, 'bundleInfo.discountType', null) === 2) {
|
|
|
finalResult.discountBuy = {
|
|
|
num: _.get(bundleData, 'bundleInfo.bundleCount', 1)
|
|
|
num: _.get(bundleData, 'bundleInfo.bundleCount', 1),
|
|
|
promotionPhrase: _.get(bundleData, 'bundleInfo.promotionPhrase', '')
|
|
|
};
|
|
|
}
|
|
|
|
...
|
...
|
|