From ad1aceb23ab49d0cf2a9f561754bd42d0cb45f6a Mon Sep 17 00:00:00 2001
From: cjl <909710561@qq.com>
Date: Tue, 19 May 2026 16:46:05 +0800
Subject: [PATCH] 雷达

---
 src/views/toCarryOutLegislativeReforms/summaryPage/index.vue |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/views/toCarryOutLegislativeReforms/summaryPage/index.vue b/src/views/toCarryOutLegislativeReforms/summaryPage/index.vue
index b5f8c3d..1833507 100644
--- a/src/views/toCarryOutLegislativeReforms/summaryPage/index.vue
+++ b/src/views/toCarryOutLegislativeReforms/summaryPage/index.vue
@@ -397,13 +397,12 @@
       })
     },
     getPeriods (month) {
-      const now = new Date()
+      const today = new Date()
       const end = new Date(new Date())
-      const today = new Date(now.getFullYear(), now.getMonth(), now.getDate())
       // ������������������������������
       const oneMonthAgo = new Date(today)
       oneMonthAgo.setMonth(oneMonthAgo.getMonth() - month)
-      const startTime = oneMonthAgo.toISOString().split('T')[0]
+      const startTime = oneMonthAgo.toISOString().substring(0, 10)
       const endTime = end.toISOString().substring(0, 10)
       console.log('startTime', startTime, 'endTime', endTime)
       return [startTime, endTime]

--
Gitblit v1.8.0