From c3bb35b20d6e076f73a1cad50fd6b9b94ca399a7 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期一, 06 一月 2025 16:15:05 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/utils/filter.js |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/src/utils/filter.js b/src/utils/filter.js
index 1231488..933e858 100644
--- a/src/utils/filter.js
+++ b/src/utils/filter.js
@@ -23,3 +23,19 @@
 Vue.filter('threeName', (value) => {
   return value
 });
+
+Vue.filter('formatDate',(value) => {
+  const date = new Date(value);
+
+  // 使用日期对象的方法获取年、月、日、小时、分钟、秒
+  const year = date.getFullYear();
+  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 formattedDate = `${year}-${month}-${day} ${hours}:${minutes}`;
+
+  return formattedDate;
+})

--
Gitblit v1.9.2