diff --git a/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterCollectUploadMinuteBaseInfo.vue b/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterCollectUploadMinuteBaseInfo.vue index 859f9820..97b01e83 100644 --- a/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterCollectUploadMinuteBaseInfo.vue +++ b/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterCollectUploadMinuteBaseInfo.vue @@ -346,12 +346,12 @@ export default { const uidGenerator = () => { return '-' + parseInt(Math.random() * 10000 + 1, 10) } - this.drafterDataSource = data.otherDraftUserVOS.map(item => { + this.drafterDataSource = data.otherDraftUserVOS && data.otherDraftUserVOS.length > 0 ? data.otherDraftUserVOS.map(item => { return { uid: uidGenerator(), ...item } - }) + }) : [] this.dataSource = data.inspectContents && data.inspectContents.length > 0 ? data.inspectContents.map(item => { return { uid: uidGenerator(),