处理到期时间
site-dist-deploy / build-and-deploy (push) Successful in 1m17s

This commit is contained in:
2026-01-07 18:47:49 -08:00
parent 686be3a855
commit 833cd9e305
2 changed files with 4 additions and 7 deletions
+2 -2
View File
@@ -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,
}
}