layui 表格时间显示问题

table.render({
  elem: '#LAY-app-message-all'
  ,url: '/Order/selectAllOrder' //接口
  ,page: true
  ,cols: [[
    {type: 'checkbox', fixed: 'left'}
        ,{field: 'fromName', title: '寄件人姓名', width: 100}
        ,{field: 'toName', title: '收件人姓名', width: 100}
        ,{field: 'fromTel', title: '寄件人电话', width: 150}
        ,{field: 'toTel', title: '收件人电话', width: 150}
        ,{field: 'toAddress', title: '收件地址', width: 200}
        ,{field: 'orderStatus', title: '订单状态', width: 100}
        ,{field: 'createTime', title: '订单创建时间', width: 200,templet: "
{{layui.util.toDateString(d.ordertime, 'yyyy-MM-dd HH:mm:ss')}}
"
} ,{field: 'remark', title: '备注', width: 150} ,{field: 'orderId', title: '订单编号', width: 200} ,{field: 'price', title: '费用', Width: 100} ,{fixed: 'right', title: '操作', width:150, align:'center', toolbar: '#barDemo'} ]] ,skin: 'line' });

你可能感兴趣的:(layui 表格时间显示问题)