From 3aeb24335daaa02e6d931dce6cb155565b1d4d65 Mon Sep 17 00:00:00 2001 From: Seven Date: Sun, 18 Jan 2026 16:42:27 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E7=AD=BE=E5=88=B0?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=E6=A0=BC=E5=BC=8F=E5=8C=96=E9=80=BB=E8=BE=91?= =?UTF-8?q?=EF=BC=8C=E7=A1=AE=E4=BF=9D=E4=BD=BF=E7=94=A8=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E7=9A=84=E6=97=A5=E6=9C=9F=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/check_in/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/check_in/index.vue b/src/views/check_in/index.vue index 5d3220e..a469a36 100644 --- a/src/views/check_in/index.vue +++ b/src/views/check_in/index.vue @@ -19,7 +19,7 @@ const { data: today_checkin } = await safeClient(client.api.checkIns.today.get({ const checkedInDates = computed(() => { if (!data.value?.data) return new Set(); - return new Set(data.value.data.map(item => dayjs(item.checkInAt).format("YYYY-MM-DD"))); + return new Set(data.value.data.map(item => dayjs(item.checkInLocalDate).format("YYYY-MM-DD"))); }); function isCheckedIn(day: number) {