feat: page

This commit is contained in:
zzc
2025-11-27 22:49:49 +08:00
parent 3c3b8e1894
commit e59a11c05e
9 changed files with 978 additions and 1 deletions

View File

@@ -83,7 +83,7 @@ export function formatTime(time, option) {
if (option) {
return parseTime(time, option)
} else {
return `${time.getMonth() + 1}${time.getDate()}${time.getHours()}${time.getMinutes()}`
return `${time.getFullYear()}/${time.getMonth() + 1}/${time.getDate()} ${time.getHours()}:${time.getMinutes()}`
}
}