From a2aa94ae99095ec3fb5c463eefca33f89fd25bca Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Tue, 05 Mar 2024 08:52:17 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/utils/filter.js | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/utils/filter.js b/src/utils/filter.js
index f4e2138..933e858 100644
--- a/src/utils/filter.js
+++ b/src/utils/filter.js
@@ -32,11 +32,10 @@
const month = String(date.getMonth() + 1).padStart(2, "0");
const day = String(date.getDate()).padStart(2, "0");
const hours = String(date.getHours()).padStart(2, "0");
- const minutes = String(date.getMinutes()).padStart(2, "0");
- const seconds = String(date.getSeconds()).padStart(2, "0");
+ const minutes = String(date.getMinutes()).padStart(2, "0")
// 构建所需格式的字符串
- const formattedDate = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
+ const formattedDate = `${year}-${month}-${day} ${hours}:${minutes}`;
return formattedDate;
})
--
Gitblit v1.9.2