From 95ee04326a3fddf98559872bf4231d80761a6581 Mon Sep 17 00:00:00 2001 From: cooper <1322849632@qq.com> Date: Sun, 8 Mar 2020 18:42:49 +0800 Subject: [PATCH] fix bug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 当传入time为null时,前端浏览器渲染报错 --- src/utils/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/index.js b/src/utils/index.js index 3d0369ab..423ab505 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -9,12 +9,12 @@ * @returns {string | null} */ export function parseTime(time, cFormat) { - if (arguments.length === 0) { + if (arguments.length === 0 && time != null) { return null } const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}' let date - if (typeof time === 'object' && time != null) { + if (typeof time === 'object') { date = time } else { if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {