//time:vue elementui中时间控件的时间,'yyyy-MM-dd’格式
formatDate(time, ‘yyyy-MM-dd’);

function formatDate(time, format) {
    let t = new Date(time)
    let 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())
        }
    })
}
Logo

前往低代码交流专区

更多推荐