From 01f1e1f4111f6d8957eccbce64829008460b05d1 Mon Sep 17 00:00:00 2001 From: ysn <2126564605@qq.com> Date: Wed, 27 May 2026 09:54:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=86=E8=AE=AF-=E4=BC=9A=E8=AF=8A=E8=AE=B0?= =?UTF-8?q?=E5=BD=95-=E6=8E=A5=E5=8F=A3=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/videoCommunication/index.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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; });