export function dateFormmat(date) { const T = new Date(date); return { year: T.getFullYear(), month: T.getMonth(), day: T.getDate(), hour: T.getHours(), min: T.getMinutes(), s: T.getSeconds() } }