You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
591 B
JavaScript

11 months ago
/**
*
* @param {*} time 时间戳
*/
export const getTheDate = function (time) {
let date = new Date(time);
let y = date.getFullYear();
let MM = date.getMonth() + 1;
MM = MM < 10 ? ('0' + MM) : MM;
let d = date.getDate();
d = d < 10 ? ('0' + d) : d;
let h = date.getHours();
h = h < 10 ? ('0' + h) : h;
let m = date.getMinutes();
m = m < 10 ? ('0' + m) : m;
let s = date.getSeconds();
s = s < 10 ? ('0' + s) : s;
// return y + '-' + MM + '-' + d + ' ' + h + ':' + m + ':' + s;
return y + '-' + MM + '-' + d + '-' + h + '-' + m
}