fix: 代客下单优化购物车套餐商品
This commit is contained in:
parent
79fde1c683
commit
7830983824
|
|
@ -200,7 +200,11 @@ const currentPrice = computed(() => {
|
||||||
return 0;
|
return 0;
|
||||||
});
|
});
|
||||||
const proGroupInfo = computed(() => {
|
const proGroupInfo = computed(() => {
|
||||||
return JSON.parse(props.item.proGroupInfo);
|
try {
|
||||||
|
return JSON.parse(props.item.proGroupInfo);
|
||||||
|
} catch (e) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
});
|
});
|
||||||
const discountNewPrice = computed(() => {
|
const discountNewPrice = computed(() => {
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue