timeFormat(originVal) {
// 将毫秒数转换为yyyy-m-d hh:mm:ss格式
const dt = new Date(originVal)
const y = dt.getFullYear();
const m = (dt.getMonth() + 1 + '').padStart(2, '0');
const d = (dt.getDate() + '').padStart(2, '0');
const hh = (dt.getMonth() + '').padStart(2, '0');
const mm = (dt.getMinutes() + '').padStart(2, '0');
const ss = (dt.getSeconds() + '').padStart(2, '0');
let tiem = y + "-" + m + "-" + d + " " + hh + ":" + mm + ":" + ss
return tiem;
},
06-29
2039
02-26
333
10-18
3276
05-19