|
|
@ -202,14 +202,14 @@ export default { |
|
|
|
const { data, msg, code } = res.data; |
|
|
|
if (code === 200) { |
|
|
|
console.log('查看会议纪要data: ', data); |
|
|
|
data.discussionContent = this.discussionContent; |
|
|
|
data.endTime = this.endTime; |
|
|
|
data.host = this.host; |
|
|
|
data.meetingMinutes = this.meetingMinutes; |
|
|
|
data.participants = this.participants; |
|
|
|
data.place = this.place; |
|
|
|
data.startTime = this.startTime; |
|
|
|
data.taskId = this.taskId; |
|
|
|
this.discussionContent = data.discussionContent ? data.discussionContent : ''; |
|
|
|
this.endTime = this.endTime ? this.endTime : ''; |
|
|
|
this.host = this.host ? this.host : ''; |
|
|
|
this.meetingMinutes = this.meetingMinutes ? this.meetingMinutes : ''; |
|
|
|
this.participants = this.participants ? this.participants : ''; |
|
|
|
this.place = this.place ? this.place : ''; |
|
|
|
this.startTime = this.startTime ? this.startTime : ''; |
|
|
|
this.taskId = this.taskId ? this.taskId : ''; |
|
|
|
} else { |
|
|
|
throw msg; |
|
|
|
} |
|
|
|