mdm-client 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div ref="
|
|
2
|
+
<div ref="rootElm" class="point-meeting" id="point-meeting" :style="{ resize: 'both' }">
|
|
3
3
|
<div class="point-meeting-top" v-drag="'point-meeting'">
|
|
4
4
|
<div class="top-group">
|
|
5
5
|
<div class="duration-icon"></div>
|
|
@@ -619,11 +619,11 @@ export default {
|
|
|
619
619
|
videoTrack: this.liveClient?.roomMode === 'auto' ? localVideoTrack : null,
|
|
620
620
|
})
|
|
621
621
|
// 隐藏当前窗口(保持状态以便恢复)
|
|
622
|
-
this.$refs.
|
|
622
|
+
this.$refs.rootElm && (this.$refs.rootElm.style.visibility = 'hidden')
|
|
623
623
|
},
|
|
624
624
|
// 还原窗口(供父组件调用)
|
|
625
625
|
resetDialog() {
|
|
626
|
-
this.$refs.
|
|
626
|
+
this.$refs.rootElm && (this.$refs.rootElm.style.visibility = 'visible')
|
|
627
627
|
},
|
|
628
628
|
async leaveRoom() {
|
|
629
629
|
if (!this.isInMeeting) {
|