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

This commit is contained in:
2025-03-26 10:23:17 +08:00
parent 79fde1c683
commit 7830983824

View File

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