From 7487208718602523e67f52ef1486a1840914fe8d Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 29 Jan 2026 17:28:58 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=B0=B4=E6=9E=9C=E6=B8=B8=E6=88=8F?= =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E8=BF=94=E5=9C=BA):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=80=92=E8=AE=A1=E6=97=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Activities/JackPot/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Activities/JackPot/index.vue b/src/views/Activities/JackPot/index.vue index 3b175af..9fa6827 100644 --- a/src/views/Activities/JackPot/index.vue +++ b/src/views/Activities/JackPot/index.vue @@ -503,10 +503,10 @@ const showRanking = computed(() => { // return [] }) -// 获取沙特时间的1月3号早上0点的时间戳(直接使用北京时间) +// 获取沙特时间的2026年2月16号早上0点的时间戳(直接使用北京时间) const getTargetTime = () => { - // 沙特时间1月3日0点 = 北京时间1月3日5点(沙特比北京晚5小时) - const targetDate = new Date(2026, 0, 3, 5, 0, 0) + // 沙特时间2026年2月16号早上0点 = 北京时间2026年2月16号早上5点(沙特比北京晚5小时) + const targetDate = new Date(2026, 1, 16, 5, 0, 0) return targetDate.getTime() }