layUI前台"2020-04-01T16:00:00.000+0000"日期格式转换

layUI前台"2020-04-01T16:00:00.000+0000"日期格式转换

实现:

2020-04-01T16:00:00.000+0000 => 2020-04-02 00:00:00

注:由于我的数据库timeZone是system,所以数据有时差(数据库中date=2020-04-02)

{field: 'date', width: 220, title: '下单时间',
templet:function (data) {
  var date1 = new Date(data.date).toJSON();
  var date = new Date(+new Date(date1)+8*3600*1000).toISOString().replace(/T/g,' ').replace(/\.[\d]{3}Z/,'');
  //date.substr(0,10); //接取2020-04-02 
  return date;
 }
}

你可能感兴趣的:(前端,js,layui)