diff --git a/src/utils/index.js b/src/utils/index.js index 2684e3c2597..b50e3bd0f82 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -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