diff --git a/components/shopping/jingdong/shopping-card.vue b/components/shopping/jingdong/shopping-card.vue index 6d294f8..099691b 100644 --- a/components/shopping/jingdong/shopping-card.vue +++ b/components/shopping/jingdong/shopping-card.vue @@ -14,7 +14,9 @@ - {{ formatStatusDesc(item.statusDesc) }} + {{ + item.shopType != 'waimai' ? formatStatusDesc(item.statusDesc) : + formatWaimaiStatusDesc(item.statusDesc) }} {{ @@ -87,7 +89,11 @@ - {{ safeFormatPrice(item) }} + {{ item.shopType === 'waimai' ? + (item.totalPrice ? Number(item.totalPrice).toFixed(2) : '0.00') + : + safeFormatPrice(item) + }} 共{{ @@ -119,7 +125,7 @@