export function getFillDate(key) {
if(key < 10) {
return `0${key}`;
}else{
return `${key}`;
}
}
/**
* 时间戳转化为年月日
* @param times 时间戳
* @param ymd 格式类型(yyyy-mm-dd,yyyy/mm/dd)
* @param hms 可选,格式类型(hh,hh:mm,hh:mm:ss)
* @returns {年月日}
*/
export function dateFomat (times, ymd, hms) {
const oDate = new Date(times)
const oYear = oDate.getFullYear()
const oMonth = oDate.getMonth() + 1
const oDay = oDate.getDate()
const oHour = oDate.getHours()
const oMin = oDate.getMinutes()
const oSec = oDate.getSeconds()
let oTime // 最后拼接时间
// 年月日格式
switch (ymd) {
case 'yyyy-mm-dd':
oTime = oYear + '-' + getFillDate(oMonth) + '-' + getFillDate(oDay)
break
case 'yyyy/mm/dd':
oTime = oYear + '/' + getFillDate(oMonth) + '/' + getFillDate(oDay)
break
}
// 时分秒格式
switch (hms) {
case 'hh':
oTime = oTime + ' ' + getFillDate(oHour)
break
case 'hh:mm':
oTime = oTime + ' ' + getFillDate(oHour) + ':' + getFillDate(oMin)
break
case 'hh:mm:ss':
oTime = oTime + ' ' + getFillDate(oHour) + ':' + getFillDate(oMin) + ':' + getFillDate(oSec)
break
}
return oTime
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。