diff --git a/src/views/OKR/Meeting/MeetingInfo.vue b/src/views/OKR/Meeting/MeetingInfo.vue index 1b776e9..4afaca7 100644 --- a/src/views/OKR/Meeting/MeetingInfo.vue +++ b/src/views/OKR/Meeting/MeetingInfo.vue @@ -108,7 +108,7 @@ - + @@ -138,11 +138,6 @@ - -
@@ -204,7 +199,6 @@
-
-
@@ -487,6 +471,26 @@ async function submit(isDraft = false) { ) { message.error('会议结束时,会议纪要不能为空') return + } else { + let text = '' + form.value.meetingSummaryList.map((item, index) => { + if (form.value.meetingSummaryList.length > 1) { + text += '

会议纪要' + (index + 1) + ':

' + } + text += item.summary + if (item.isCreateAgentWork) { + text += `

执行人:` + item.agentUserList.map((it) => { + if (it) { + text += `${userOptions.value.find((user) => user.id == it).name} ` + } + }) + text += '

' + text += `

截止日期:${item.endDate}

` + } + text += '


' + }) + form.value.meetingSummary = text } // 更新会议 await MeetingApi.updateMeeting(form.value)