|
@@ -1220,7 +1220,7 @@ $(function () {
|
|
|
const year = date.getFullYear()
|
|
|
const month = fillZero(date.getMonth())
|
|
|
const day = fillZero(date.getDate())
|
|
|
- const hour = fillZero(date.getDate())
|
|
|
+ const hour = fillZero(date.getHours())
|
|
|
const minute = fillZero(date.getMinutes())
|
|
|
const second = fillZero(date.getSeconds())
|
|
|
return `${year}-${month}-${day} ${hour}:${minute}:${second}`
|