js 格式化时间毫秒


//格式华日期为2017-12-20
    function datefomate(value) {
        if(value==null || value == undefined){
            return "";
        }
        var date = new Date(value);
        
        Y = date.getFullYear(),
            m = date.getMonth()+1,
            d = date.getDate(),
            H = date.getHours(),
            i = date.getMinutes(),
            s = date.getSeconds();
        return Y+'-'+m+'-'+d;
    };

在 mui的template模板中 <span id="">{{item.createTime|datefomate}}</span>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM