|
|
|
|
@ -272,7 +272,7 @@ export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
// ==================== 会议基础信息 ==================== |
|
|
|
|
meetingTitle: '测试部门的云诊室', |
|
|
|
|
meetingTitle: '', |
|
|
|
|
meetingCode: '1687110', |
|
|
|
|
participantCount: 1, |
|
|
|
|
resolution: '1080P', |
|
|
|
|
@ -342,7 +342,7 @@ export default { |
|
|
|
|
audioOutList: [], |
|
|
|
|
tempSetting: {}, |
|
|
|
|
globalSetting: { |
|
|
|
|
meetingTitle: '测试部门的云诊室', |
|
|
|
|
meetingTitle: '', |
|
|
|
|
cameraId: '', |
|
|
|
|
micId: '', |
|
|
|
|
speakerId: '', |
|
|
|
|
@ -391,9 +391,10 @@ export default { |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
if (this.$route.query.roomId_id) this.creatRoom() |
|
|
|
|
|
|
|
|
|
this.initPage(); |
|
|
|
|
this.initSDK(); |
|
|
|
|
if (this.$route.query.roomId_id) this.creatRoom() |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
@ -406,13 +407,14 @@ export default { |
|
|
|
|
name: '', |
|
|
|
|
room_id: this.$route.query.roomId_id |
|
|
|
|
}) |
|
|
|
|
console.log(res) |
|
|
|
|
console.log(1111111111,res) |
|
|
|
|
this.consultation_id = res.data.consultation_id |
|
|
|
|
await postConsultationInfo({ |
|
|
|
|
const ret = await postConsultationInfo({ |
|
|
|
|
consultation_id: res.data.consultation_id, |
|
|
|
|
from_history: 0, |
|
|
|
|
room_id: '' |
|
|
|
|
}) |
|
|
|
|
this.meetingTitle = ret.data.name |
|
|
|
|
} catch (error) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
@ -428,7 +430,7 @@ export default { |
|
|
|
|
// ==================== 【1】初始化 ==================== |
|
|
|
|
// 页面初始化 |
|
|
|
|
initPage() { |
|
|
|
|
this.loadLocalSetting(); |
|
|
|
|
// this.loadLocalSetting(); |
|
|
|
|
this.updateClock(); |
|
|
|
|
setInterval(this.updateClock, 1000); |
|
|
|
|
this.initCanvas(); |
|
|
|
|
|