layui的table中日期格式轉換

我使用的layui的2.4.5版本,在util中已經帶了格式轉換的函數。這裏主要記錄如何使用。前端

未使用前在table中顯示以下:函數

前端代碼以下:工具

{field:'createDate', title: '退貨日期',minWidth:150}

經過模版和util工具類,能夠針對時間戳進行格式化:ui

{field:'createDate', title: '退貨日期',templet:'<div>{{ layui.util.toDateString(d.createDate, "yyyy-MM-dd HH:mm:ss") }}</div>',minWidth:150}

這裏注意: 在模版中必定要加上div標記,不然會提示錯誤。spa

最終顯示以下:code

相關文章
相關標籤/搜索