...
|
...
|
@@ -245,6 +245,20 @@ const getPriceGiftList = (promotionIds, promotionType) => { |
|
|
});
|
|
|
};
|
|
|
|
|
|
/**
|
|
|
* 增加套餐数量
|
|
|
* @param {*} params
|
|
|
*/
|
|
|
const incrBundle = (params) => {
|
|
|
return api.post('', {
|
|
|
method: 'app.Shopping.incrBundle',
|
|
|
uid: params.uid,
|
|
|
shopping_key: params.shopping_key,
|
|
|
increase_number: params.increase_number || '1',
|
|
|
activity_id: params.activity_id
|
|
|
});
|
|
|
};
|
|
|
|
|
|
module.exports = {
|
|
|
indexData,
|
|
|
selectGood,
|
...
|
...
|
@@ -258,5 +272,6 @@ module.exports = { |
|
|
modifyCartProduct,
|
|
|
giftProductData,
|
|
|
getPriceGiftList,
|
|
|
modifyCartPriceGiftProduct
|
|
|
modifyCartPriceGiftProduct,
|
|
|
incrBundle
|
|
|
}; |
...
|
...
|
|