mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
app.service('Time', function() {
|
|
return {
|
|
formatTime: function(date) {
|
|
var time = new Date(date);
|
|
return time.getFullYear() + '-' +
|
|
(parseInt(time.getMonth()) + 1) + '-' +
|
|
time.getDate() + ' ' +
|
|
time.getHours() + ':' +
|
|
time.getMinutes() + ':' +
|
|
time.getSeconds();
|
|
}
|
|
};
|
|
}); |