var timestamp = '/Date(1610435742000)/';
var date = new Date(parseInt(timestamp.replace("/Date(", "").replace(")/", ""), 10));
var Y = date.getFullYear() + '-';
var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
var D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate()) + ' ';
var h = (date.getHours() < 10 ? '0' + (date.getHours()) : date.getHours()) + ':';
var m = (date.getMinutes() < 10 ? '0' + (date.getMinutes()) : date.getMinutes()) + ':';
var s = (date.getSeconds() < 10 ? '0' + (date.getSeconds()) : date.getSeconds());
var NewDtime = Y + M + D + h + m + s;
转载:https://editor.youkuaiyun.com/md?not_checkout=1&articleId=109366102