使用element-ui怎么格式化表格數(shù)據(jù)時(shí)間,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的石林網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!1.首先
復(fù)制代碼 代碼如下:
主要是:formatter="dateFormat" 這個(gè)屬性
formatter 用來(lái)格式化內(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í)間問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。