Vue + Element UI + Moment.js——el-table-column的时间戳格式转换解决方案
生活随笔
收集整理的這篇文章主要介紹了
Vue + Element UI + Moment.js——el-table-column的时间戳格式转换解决方案
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
基本概念
?Moment.js:JavaScript 日期處理類庫
解決方案
formatter="dateFormat"綁定一個 dateFormat方法 ??
<el-table-column prop="createTime" :formatter="dateFormat" label="日期" width="120"> </el-table-column>Moment.js版本
dateFormat:function(row,column){var date = row[column.property];?if (date === undefined) {?return "";?}?var moment = require("moment");return moment(date).format("YYYY-MM-DD HH:mm:ss");?}自定義版本?
formatDate(row, column) {let date = new Date(時間戳);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;},?
參考文章
https://blog.csdn.net/weixin_40578880/article/details/82014950
https://www.jianshu.com/p/1ab01da337cf
總結
以上是生活随笔為你收集整理的Vue + Element UI + Moment.js——el-table-column的时间戳格式转换解决方案的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Vue——整合与中文化Moment.js
- 下一篇: JavaScript——对象合并解决方案