fix: 代客下单优化购物车套餐商品
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user