mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
/src/utils/index.js parseTime 添加IE浏览器(版本10以下,包括版本10)兼容。
This commit is contained in:
parent
c2a5a15956
commit
d54cd25de2
@ -19,6 +19,8 @@ export function parseTime(time, cFormat) {
|
||||
} else {
|
||||
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
|
||||
time = parseInt(time)
|
||||
} else if (typeof time === 'string') {
|
||||
time = time.replace(new RegExp(/-/gm), '/');
|
||||
}
|
||||
if ((typeof time === 'number') && (time.toString().length === 10)) {
|
||||
time = time * 1000
|
||||
|
Loading…
x
Reference in New Issue
Block a user