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)