您好,登錄后才能下訂單哦!
使用element-ui怎么格式化表格數(shù)據(jù)時(shí)間,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
1.首先
復(fù)制代碼 代碼如下:
<el-table-column prop="AuditEndTime" label="處理時(shí)間" width="120" :formatter="dateFormat" align="center"></el-table-column>
主要是: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"
<el-table-column prop="login_id" align="center" label="工號(hào)"> </el-table-column> <el-table-column prop="login_id" width="110px" align="center" label="工號(hào)"> </el-table-column>
關(guān)于使用element-ui怎么格式化表格數(shù)據(jù)時(shí)間問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。