Browse Source

关联PT

master
lucky 4 years ago
parent
commit
55536e915d
  1. 16
      src/views/Meeting/Meeting.vue

16
src/views/Meeting/Meeting.vue

@ -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;
}

Loading…
Cancel
Save