fix: 代客下单优化购物车套餐商品

This commit is contained in:
YeMingfei666 2025-03-26 10:23:17 +08:00
parent 79fde1c683
commit 7830983824
1 changed files with 5 additions and 1 deletions

View File

@ -200,7 +200,11 @@ const currentPrice = computed(() => {
return 0;
});
const proGroupInfo = computed(() => {
try {
return JSON.parse(props.item.proGroupInfo);
} catch (e) {
return [];
}
});
const discountNewPrice = computed(() => {
return 0;