[Client] Fix bug

This commit is contained in:
syuilo 2017-02-22 16:32:46 +09:00
parent db40d76690
commit a997e0f754
2 changed files with 10 additions and 10 deletions

View file

@ -2,7 +2,7 @@ module.exports = date => {
if (typeof date == 'string') date = new Date(date);
return (
date.getFullYear() + '年' +
date.getMonth() + 1 + '月' +
(date.getMonth() + 1) + '月' +
date.getDate() + '日' +
' ' +
date.getHours() + '時' +

View file

@ -11,7 +11,7 @@
this.absolute =
this.time.getFullYear() + '年' +
this.time.getMonth() + 1 + '月' +
(this.time.getMonth() + 1) + '月' +
this.time.getDate() + '日' +
' ' +
this.time.getHours() + '時' +