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() }