使用element-ui怎么格式化表格數(shù)據(jù)時(shí)間,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)2013年至今,先為鄂倫春等服務(wù)建站,鄂倫春等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為鄂倫春企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
1.首先
復(fù)制代碼 代碼如下:
主要是:formatter="dateFormat" 這個(gè)屬性
formatter 用來格式化內(nèi)容 Function(row, column, cellValue, index)
然后在 methods 方法對(duì)象里 添加 如下方法
//時(shí)間格式化 dateFormat(row, column, cellValue, index){ const daterc = row[column.property] if(daterc!=null){ const dateMat= new Date(parseInt(daterc.replace("/Date(", "").replace(")/", ""), 10)); const year = dateMat.getFullYear(); const month = dateMat.getMonth() + 1; const day = dateMat.getDate(); const hh = dateMat.getHours(); const mm = dateMat.getMinutes(); const ss = dateMat.getSeconds(); const timeFormat= year + "/" + month + "/" + day + " " + hh + ":" + mm + ":" + ss; return timeFormat; } }
格式化后:
2018/2/27 8:59:19
PS:Element UI的表格table列的寬度自適應(yīng)設(shè)置
不要設(shè)置 width="110px"
關(guān)于使用element-ui怎么格式化表格數(shù)據(jù)時(shí)間問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。