时间戳转换日期
时间戳
时间戳转换工具
今天做笔记本管理部分做到了数据表格中时间戳转日期
//执行一个 table 实例
table.render({
elem: '#demo'
,height: 420
,url: 'notebook/getnotebook.do' //数据接口
,title: '笔记本表'
,page: true //开启分页
,toolbar: 'default' //开启工具栏,此处显示默认图标,可以自定义模板,详见文档
,totalRow: true //开启合计行
,parseData: function(res){ //res 即为原始返回的数据
return {
"code": res.state==1?0:-1, //解析接口状态
"msg": res.message, //解析提示文本
"count": res.data.length, //解析数据长度
"data": res.data //解析数据列表
};
}
,cols: [[ //表头
{type: 'checkbox', fixed: 'left'}
,{field: 'id', title: 'ID',hide:'true'}
,{field: 'name', title: '笔记本名称'}
,{field: 'addtime', title: '添加时间',templet:'<div>{{layui.util.toDateString(d.addtime)}}</div>'}
,{fixed: 'right', width: 165, align:'center', toolbar: '#barDemo'}
]]
});