1、标准时间转时间戳
new Date() //标准时间
Math.round(new Date()/1000)
2、时间戳转各种日期格式
//格式化时间
const fmtDate = (date, fmt) => {
let o = {
'M+': date.getMonth() + 1, // 月份
'd+': date.getDate(), // 日
'h+': date.getHours(), // 小时
'm+': date.getMinutes(), // 分
's+': date.getSeconds(), // 秒
'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
S: date.getMilliseconds(), // 毫秒
};
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
}
for (let k in o) {
if (new RegExp('(' + k + ')').test(fmt)) {
fmt = fmt.replace(
RegExp.$1,
RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length),
);
}
}
return fmt;
};
// 时间戳转日期型(注:当前的时间戳拿过来时是一个以秒为单位的数字,所以需要乘以1000转为毫秒数来处理)
function dateFormatFun(time, fmt = 1) {
if (time.toString().length == 10) {
time = parseInt(time) * 1000;
}
if (time > 0) {
switch (fmt) {
case 1:
return fmtDate(new Date(time), 'yyyy-MM-dd');
case 2:
return fmtDate(new Date(time), 'yyyy-MM-dd hh:mm');
case 3:
return fmtDate(new Date(time), 'MM月dd日 hh:mm');
case 4:
return fmtDate(new Date(time), 'yyyy-MM-dd hh:mm:ss');
case 5:
return fmtDate(new Date(time), 'hh:mm');
case 6:
return fmtDate(new Date(time), 'hh:mm:ss');
case 7:
return fmtDate(new Date(time), 'yyyy年MM月dd日');
case 8:
return fmtDate(new Date(time), 'yyyy.MM.dd');
case 9:
return fmtDate(new Date(time), 'MM.dd');
case 10:
return fmtDate(new Date(time), 'yyyy/MM/dd');
case 11:
return fmtDate(new Date(time), 'MM-dd hh:mm:ss');
default:
return fmtDate(new Date(time), 'yyyy-MM-dd');
}
}
}
export default { dateFormatFun };
用法:
import { dateFormatFun } from '@/utils/dataTime'
dateFormatFun(new Date(), 5)
dateFormatFun(后端传递的时间戳, 5)