Commit 51b0cb72 authored by 前端-黄佳鑫's avatar 前端-黄佳鑫

🐞 fix(营销能力): 修改活动商品添加赠送优惠券提交没数量的问题

parent 1a87eacf
......@@ -137,8 +137,6 @@ const DetialLayout = () => {
})
data.interiorLogs = interiorLogs;
}
data.externalLogStates = externalLogStates;
if (data.activityType === 6) {
setRemind(remindLayout(data.activityType, data.activityDefined.giveType, data.activityDefined.giftType));
}
......
......@@ -124,7 +124,7 @@ const DetialLayout = () => {
activityGoodsId: item.productId,
couponId: __item.id,
couponName: __item.name,
num: __item.num,
num: __item.num || 1,
}
})
}
......
......@@ -112,7 +112,7 @@ const AddedMarketing = () => {
activityGoodsId: item.productId,
couponId: __item.id,
couponName: __item.name,
num: __item.num,
num: __item.num || 1,
}
})
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment