From 31923d511e45781aab69a83a6577e4cf04c2656b Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 11 Aug 2025 01:47:39 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E4=BF=AE=E5=A4=8Dvip=E8=BF=87?= =?UTF-8?q?=E6=9C=9F=E6=97=B6=E9=97=B4=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/certd-client/src/store/settings/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/certd-client/src/store/settings/index.ts b/packages/ui/certd-client/src/store/settings/index.ts index 4e4eeda0..99aade5f 100644 --- a/packages/ui/certd-client/src/store/settings/index.ts +++ b/packages/ui/certd-client/src/store/settings/index.ts @@ -143,7 +143,7 @@ export const useSettingStore = defineStore({ if (this.plusInfo?.expireTime === -1) { return "永久"; } - return dayjs(this.plusInfo?.expireTime, "yyyy-MM-dd"); + return dayjs(this.plusInfo?.expireTime).format("YYYY-MM-DD"); }, isForever() { return this.isPlus && this.plusInfo?.expireTime === -1;