From c263f1cffce8ae8365837b0fec272ef134971f2e Mon Sep 17 00:00:00 2001 From: zhangyahui Date: Wed, 27 May 2026 11:05:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=8B=E8=BD=BD=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/shoppingCart/sc-item.vue | 7 ++++++- src/views/wardrobe/Orders.vue | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/shoppingCart/sc-item.vue b/src/views/shoppingCart/sc-item.vue index 5fb5854..fa13bb3 100644 --- a/src/views/shoppingCart/sc-item.vue +++ b/src/views/shoppingCart/sc-item.vue @@ -33,7 +33,7 @@
${{ info.amount }} HKD
{ status: number @@ -74,6 +75,10 @@ const onRemove = () => { emit('remove', props.info) } + + const showDownload = computed(() => { + return props.isOrder ? props.info.status === 1 : props.orderActionsLayout + })