From 39d8122ae93207f7e7ff450b09f42a60d972213a Mon Sep 17 00:00:00 2001 From: jiangyy Date: Thu, 9 Dec 2021 14:21:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B9=9D=E5=B0=8F=E5=9C=BA=E6=89=80=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/communityService/ninePlaces/team/team.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/modules/communityService/ninePlaces/team/team.vue b/src/views/modules/communityService/ninePlaces/team/team.vue index a828b7ae..9f93a0a0 100644 --- a/src/views/modules/communityService/ninePlaces/team/team.vue +++ b/src/views/modules/communityService/ninePlaces/team/team.vue @@ -304,8 +304,11 @@ export default { this.tableData = data.list this.tableData.forEach(item => { - let timeArray = item.time.split(' ') - item.time = timeArray[0] + if (item.time) { + let timeArray = item.time.split(' ') + item.time = timeArray[0] + } + }); } else { this.$message.error(msg)