更新北京时间

This commit is contained in:
2026-03-24 14:17:55 +08:00
parent d517c1573d
commit 6c86c11e60
3 changed files with 109 additions and 82 deletions

View File

@@ -11,3 +11,19 @@ export function TimestamptolocalTime(date) {
return `${year}/${month}/${day} ${hours}:${minutes}`
}
// 时间戳转换为北京时间,格式为 YYYY/MM/DD hh:mm
export function TimestampttoBeijingTime(date) {
if (!date || isNaN(date)) return ''
const d = new Date(date)
// 北京时间是 UTC+8
const beijingTime = new Date(d.getTime() + 8 * 60 * 60 * 1000)
const year = beijingTime.getUTCFullYear()
const month = String(beijingTime.getUTCMonth() + 1).padStart(2, '0')
const day = String(beijingTime.getUTCDate()).padStart(2, '0')
const hours = String(beijingTime.getUTCHours()).padStart(2, '0')
const minutes = String(beijingTime.getUTCMinutes()).padStart(2, '0')
return `${year}/${month}/${day} ${hours}:${minutes}`
}