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,
}
}