From 7f1d6eb9f555b1f38d85e84d57bc17192cceb274 Mon Sep 17 00:00:00 2001
From: houzhongjian <houzhongyi@126.com>
Date: 星期二, 07 一月 2025 14:22:40 +0800
Subject: [PATCH] 1、修改logo图标 2、修改config.ts plat_url值 3、移除VITE_PLAT_API_URL 4、将应用改为目录

---
 src/utils/dateUtil.ts |   62 +++++++++++++++++++++++++++++++
 1 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/src/utils/dateUtil.ts b/src/utils/dateUtil.ts
index 316b870..1759b5f 100644
--- a/src/utils/dateUtil.ts
+++ b/src/utils/dateUtil.ts
@@ -16,3 +16,65 @@
 }
 
 export const dateUtil = dayjs
+export function getYMDHMS (timestamp: number | string | Date) {
+  const time = new Date(timestamp)
+  const year = time.getFullYear()
+  let month = time.getMonth() + 1 + ''
+  let date = time.getDate() + ''
+  let hours = time.getHours() + ''
+  let minute = time.getMinutes() + ''
+  let second = time.getSeconds() + ''
+
+  if (month < 10) { month = '0' + month }
+  if (date < 10) { date = '0' + date }
+  if (hours < 10) { hours = '0' + hours }
+  if (minute < 10) { minute = '0' + minute }
+  if (second < 10) { second = '0' + second }
+  return year + '-' + month + '-' + date + ' ' + hours + ':' + minute + ':' + second
+}
+export function getYMDHM0 (timestamp: number | string | Date) {
+  const time = new Date(timestamp)
+  const year = time.getFullYear()
+  let month = time.getMonth() + 1 + ''
+  let date = time.getDate() + ''
+  let hours = time.getHours() + ''
+  let minute = time.getMinutes() + ''
+
+  if (month < 10) { month = '0' + month }
+  if (date < 10) { date = '0' + date }
+  if (hours < 10) { hours = '0' + hours }
+  if (minute < 10) { minute = '0' + minute }
+  return year + '-' + month + '-' + date + ' ' + hours + ':' + minute + ':' + '00'
+}
+export function getYMD (timestamp: number | string | Date) {
+  const time = new Date(timestamp)
+  const year = time.getFullYear()
+  let month = time.getMonth() + 1 + ''
+  let date = time.getDate() + ''
+  let hours = time.getHours() + ''
+  let minute = time.getMinutes() + ''
+  let second = time.getSeconds() + ''
+
+  if (month < 10) { month = '0' + month }
+  if (date < 10) { date = '0' + date }
+  if (hours < 10) { hours = '0' + hours }
+  if (minute < 10) { minute = '0' + minute }
+  if (second < 10) { second = '0' + second }
+  return year + '-' + month + '-' + date
+}
+export function getYM (timestamp: number | string | Date) {
+  const time = new Date(timestamp)
+  const year = time.getFullYear()
+  let month = time.getMonth() + 1 + ''
+  let date = time.getDate() + ''
+  let hours = time.getHours() + ''
+  let minute = time.getMinutes() + ''
+  let second = time.getSeconds() + ''
+
+  if (month < 10) { month = '0' + month }
+  if (date < 10) { date = '0' + date }
+  if (hours < 10) { hours = '0' + hours }
+  if (minute < 10) { minute = '0' + minute }
+  if (second < 10) { second = '0' + second }
+  return year + '-' + month
+}

--
Gitblit v1.9.3