diff --git a/src/views/videoCommunication/index.vue b/src/views/videoCommunication/index.vue index fa2ac02..0167e7e 100644 --- a/src/views/videoCommunication/index.vue +++ b/src/views/videoCommunication/index.vue @@ -87,7 +87,7 @@ width="35%" :close-on-click-modal="false" > - + {{ getStatusText(meetingDetail.status) }} @@ -116,7 +116,6 @@ @@ -135,7 +134,6 @@ @@ -267,7 +265,7 @@ export default { getList() { this.loading = true; getConsultationList(this.queryParams).then((res) => { - console.log("会诊记录列表", res); + console.log("会诊记录", res.data.list); this.list = res.data.list; this.queryParams.total = Number(res.data.total); this.loading = false; @@ -276,7 +274,7 @@ export default { // 会议详情 handleDetail(row) { getConsultationMeetingInfo(row).then((res) => { - console.log("会诊记录详情", res); + console.log("会诊记录详情", res.data); this.meetingDetail = res.data; this.meetingDetailVisible = true; });