You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.8 KiB
61 lines
1.8 KiB
2 years ago
|
export const formatTime = (date: Date) => {
|
||
|
const year = date.getFullYear()
|
||
|
const month = date.getMonth() + 1
|
||
|
const day = date.getDate()
|
||
|
const hour = date.getHours()
|
||
|
const minute = date.getMinutes()
|
||
|
const second = date.getSeconds()
|
||
|
|
||
|
return (
|
||
|
[year, month, day].map(formatNumber).join('/') +
|
||
|
' ' +
|
||
|
[hour, minute, second].map(formatNumber).join(':')
|
||
|
)
|
||
|
}
|
||
|
|
||
|
const formatNumber = (n: number) => {
|
||
|
const s = n.toString()
|
||
|
return s[1] ? s : '0' + s
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取 yyyy-mm-dd hh:mm:ss 时间格式
|
||
|
*/
|
||
|
export function formatTimestamp () {
|
||
|
const date = new Date()
|
||
|
const year = date.getFullYear()
|
||
|
const month = (date.getMonth() + 1).toString().padStart(2, '0')
|
||
|
const day = date.getDate().toString().padStart(2, '0')
|
||
|
const hour = date.getHours().toString().padStart(2, '0')
|
||
|
const minute = date.getMinutes().toString().padStart(2, '0')
|
||
|
const second = date.getSeconds().toString().padStart(2, '0')
|
||
|
|
||
|
return `${year}-${month}-${day} ${hour}:${minute}:${second}`
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取token
|
||
|
*/
|
||
|
export function getToken () {
|
||
|
return wx.getStorageSync('token')
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 全局变量
|
||
|
*/
|
||
|
export module globalDataModule {
|
||
|
// 当前选中街道Id
|
||
|
export var currentStreetId: string = '';
|
||
|
}
|
||
|
|
||
|
export function getTimestamp () {
|
||
|
const date = new Date()
|
||
|
const year = date.getFullYear()
|
||
|
const month = date.getMonth() + 1 > 9 ? date.getMonth() + 1 : `0${date.getMonth() + 1}`
|
||
|
const day = date.getDate() > 9 ? date.getDate() : `0${date.getDate()}`
|
||
|
const hour = date.getHours() > 9 ? date.getHours() : `0${date.getHours()}`
|
||
|
const minute = date.getMinutes() > 9 ? date.getMinutes() : `0${date.getMinutes()}`
|
||
|
const second = date.getSeconds() > 9 ? date.getSeconds() : `0${date.getSeconds()}`
|
||
|
|
||
|
return `${year}-${month}-${day} ${hour}:${minute}:${second}`
|
||
|
}
|