first commit

This commit is contained in:
toom1996
2025-06-19 14:25:18 +08:00
commit 022e7a68c3
68 changed files with 10858 additions and 0 deletions

16
utils/date.ts Normal file
View File

@ -0,0 +1,16 @@
export function formatDateTime() {
const now = new Date();
// 获取年份、月份、日期、小时、分钟、秒数
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0'); // 月份从0开始需要加1
const day = String(now.getDate()).padStart(2, '0');
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
// 拼接成需要的格式
const formattedDateTime = `${year}-${month}-${day}T${hours}:${minutes}:${seconds}`;
return formattedDateTime;
}