vue elementui表格时间戳转换yyyy-mm-dd

elementui中表格数据时间转换,后台返回时间戳,前端转化成yyyy-mm-dd,我的前端是用vue写的
在表格中加入

<el-table-column prop="这个是参数" label="纳入时间(就是名字叫啥都行)" :formatter="formatDate"></el-table-column>

在方法中加入以下代码,上面的 :formatter=“formatDate” 这行代码是绑定下面的方法,保证好使!

          formatDate(row, column, cellValue, index) {
            if (cellValue == null || cellValue == "") return "";
            let date = new Date(parseInt(cellValue));//时间戳为10位需*1000,如果为13位的话不需乘1000
            let Y = date.getFullYear() + '-';
            let M = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) + '-' : date.getMonth() + 1 + '-';
            let D = date.getDate() < 10 ? '0' + date.getDate() + ' ' : date.getDate() + ' ';
            let h = date.getHours() < 10 ? '0' + date.getHours() + ':' : date.getHours() + ':';
            let m = date.getMinutes() < 10 ? '0' + date.getMinutes() + ':' : date.getMinutes() + ':';
            let s = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
            return Y + M + D + h + m + s;
        }

好使的话欢迎评论、点赞
可以的话快关注我的公众号,有福利!!(不要想歪了)
vue elementui表格时间戳转换yyyy-mm-dd_第1张图片
福利达达滴!!!!!!!!!!!!!!!!

你可能感兴趣的:(日常解决问题,vue.js,javascript,jquery)