diff --git a/src/pages/localTool/standCalendar/index.vue b/src/pages/localTool/standCalendar/index.vue index 108d53c8d..06d16e9c9 100644 --- a/src/pages/localTool/standCalendar/index.vue +++ b/src/pages/localTool/standCalendar/index.vue @@ -41,10 +41,10 @@ - + @@ -81,8 +81,8 @@
会议附件 : {{ '-' }} -
- +
+ {{ res.name.slice(0, 30) + '...' }} {{ ';' }} @@ -508,7 +508,7 @@ export default { this.editMeetForm.contents this.editMeetForm.contents = [] if (this.editMeetForm.content !== '') { - this.editMeetForm.content.split(';').forEach(item => { + this.editMeetForm.content.split(';').forEach(item => { this.editMeetForm.contents.push({ meetingTheme: item }) @@ -713,13 +713,13 @@ export default { let contentData = [] if (this.editMeetForm.contents.length > 0) { this.editMeetForm.contents.forEach(item => { - if (item.meetingTheme.length > 0){ + if (item.meetingTheme.length > 0) { contentData.push(item.meetingTheme) } }) } let editForm = { - attend: JSON.stringify( this.editMeetForm.attend), + attend: JSON.stringify(this.editMeetForm.attend), content: contentData.join(';'), id: this.editMeetForm.id, date: this.editMeetForm.date, @@ -729,7 +729,7 @@ export default { place: this.editMeetForm.place } this.loading = true - updateMeet(editForm).then(res=>{ + updateMeet(editForm).then(res => { if (true) { this.$message.success("编辑成功"); this.meetFlag = false