diff --git a/src/api/videoCommunication.js b/src/api/videoCommunication.js index fd21839..5c9a610 100644 --- a/src/api/videoCommunication.js +++ b/src/api/videoCommunication.js @@ -1,10 +1,18 @@ import request from '@/utils/request' // 视讯-会议列表 -export function listConsultation(query) { +export function getConsultationList(data) { return request({ - url: '/v1/consultation/list', - method: 'get', - params: query + url: '/consultation/list', + method: 'post', + data + }) +} +// 视讯-会议详情 +export function getConsultationMeetingInfo(data) { + return request({ + url: '/consultation/meeting_info', + method: 'post', + data }) } \ No newline at end of file diff --git a/src/views/videoCommunication/index.vue b/src/views/videoCommunication/index.vue index 4db7902..fa2ac02 100644 --- a/src/views/videoCommunication/index.vue +++ b/src/views/videoCommunication/index.vue @@ -45,26 +45,27 @@
- + - - - + + + + @@ -74,50 +75,82 @@ - - {{ selectedRecord.status || "已结束" }} + + {{ getStatusText(meetingDetail.status) }} - {{ selectedRecord.time || "" }} + {{ meetingDetail.create_time || "" }} - {{ selectedRecord.duration || "0分钟0秒" }} + {{ formatDuration(meetingDetail.duration) }} - {{ selectedRecord.totalCases || "2" }} + {{ meetingDetail.total_patients }}例 - {{ selectedRecord.positiveCases || "0" }} - - - {{ selectedRecord.negativeCases || "0" }} + {{ meetingDetail.positive_patients }}例 - {{ selectedRecord.referralCases || "4" }} + {{ meetingDetail.transfer_patients }}例 - {{ selectedRecord.sponsor || "" }} + + + + + + + + + {{ meetingDetail.user_name || "" }} + + + - - {{ selectedRecord.participants || "" }} + + + + + + + + + + {{ item.name || "" }} + + + + + {{ item.join_time || "" }} + + + @@ -125,113 +158,10 @@