From 833cd9e3055422937f2e63d57f8b732607da56ba Mon Sep 17 00:00:00 2001 From: speakeloudest Date: Wed, 7 Jan 2026 18:47:49 -0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E5=88=B0=E6=9C=9F=E6=97=B6?= =?UTF-8?q?=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/user-center/PlanCard.vue | 7 ++----- src/pages/UserCenter/subscription.ts | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/src/components/user-center/PlanCard.vue b/src/components/user-center/PlanCard.vue index 73802e4..f3dbd76 100644 --- a/src/components/user-center/PlanCard.vue +++ b/src/components/user-center/PlanCard.vue @@ -18,11 +18,8 @@
约${{ plan.daily }}/天
{{ plan.discount }}
diff --git a/src/pages/UserCenter/subscription.ts b/src/pages/UserCenter/subscription.ts index f2465df..20a1f4a 100644 --- a/src/pages/UserCenter/subscription.ts +++ b/src/pages/UserCenter/subscription.ts @@ -50,10 +50,10 @@ export function formatExpireDate(sub?: SubscriptionItem | null): ExpireInfo { const hh = String(expireDate.getHours()).padStart(2, '0') const mm = String(expireDate.getMinutes()).padStart(2, '0') - const ss = String(expireDate.getSeconds()).padStart(2, '0') + // const ss = String(expireDate.getSeconds()).padStart(2, '0') return { - text: `到期时间:${dateStr} ${hh}:${mm}:${ss}`, + text: `到期时间:${dateStr} ${hh}:${mm}`, highlight: false, } }