/**
*
* @param {Date} time
* @param {String} format
* @returns {2022-02-22 23:10:30}
* @author xuchuchu
*/
// 标准格式转yyyy-MM-dd HH:mm:ss
export const format = function(time, format = 'yyyy-MM-dd HH:mm:ss') {
var t = new Date(time)
var tf = function(i) {
return (i < 10 ? '0' : '') + i
}
return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function(a) {
switch (a) {
case 'yyyy':
return tf(t.getFullYear())
case 'MM':
return tf(t.getMonth() + 1)
case 'mm':
return tf(t.getMinutes())
case 'dd':
return tf(t.getDate())
case 'HH':
return tf(t.getHours())
case 'ss':
return tf(t.getSeconds())
}
})
}
1.utils里面的index,日期格式引用