防止时间为空出现的异常

This commit is contained in:
RuoYi 2019-12-31 17:24:34 +08:00
parent 3436f77c4a
commit 9067369ce0
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const baseURL = process.env.VUE_APP_BASE_API
// 日期格式化 // 日期格式化
export function parseTime(time, pattern) { export function parseTime(time, pattern) {
if (arguments.length === 0) { if (arguments.length === 0 || !time) {
return null return null
} }
const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}' const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'