12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * 时间格式
- */
- export function formatTime (time) {
- if (!time || time.length < 6) return ''
- let seconds = time.slice(-2)
- let minutes = time.slice(-4, -2)
- let hours = time.slice(0, -4)
- return hours + ':' + minutes + ':' + seconds
- }
- /**
- * 日期格式
- */
- export function formatDate (date) {
- if (!date || date.length < 6) return ''
- let day = date.slice(-2)
- let month = date.slice(-4, -2)
- let year = date.slice(0, -4)
- return year + '.' + month + '.' + day
- }
- /**
- * 北京时间
- * @param date
- */
- export function formatBeijingTime (date) {
- // let beijingTime = new Date(date.getTime() + 8 * 60 * 60 * 1000)
- // 格式化为 yyyy-MM-dd HH:mm:ss
- const year = date.getFullYear()
- const month = String(date.getMonth() + 1).padStart(2, '0') // 月份从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 seconds = String(date.getSeconds()).padStart(2, '0')
- return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
- }
- export function getDate (dataTime) {
- if (!dataTime) return ''
- return dataTime.slice(0, 10)
- }
|