mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-08 20:27:19 +08:00
Update index.js
This commit is contained in:
parent
9f23adbc14
commit
84c65eec6d
@ -13,7 +13,9 @@ export function parseTime(time, cFormat) {
|
||||
} else {
|
||||
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
|
||||
time = parseInt(time)
|
||||
if (time.toString().length === 10) time = time * 1000
|
||||
}
|
||||
if ((typeof time === 'number') && (time.toString().length === 10)) {
|
||||
time = time * 1000
|
||||
}
|
||||
date = new Date(time)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user