【功能修复】拼团的单买价格展示不正确

pull/92/MERGE
YunaiV 2024-09-03 10:18:30 +08:00
parent 89e86b84fe
commit 7268659193
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@
state.goodsId = spu.id;
//
activity.products.forEach((product) => {
spu.price = Math.min(spu.price, product.combinationPrice); // SPU
state.activity.price = Math.min(spu.price, product.combinationPrice); // SPU
});
// 使
spu.skus.forEach((sku) => {