Commit c6a562e3 by qlintonger xeno

多人通话中完成+1

parent 2e4967ef
...@@ -36,8 +36,9 @@ function idChangedHere(id: any) { ...@@ -36,8 +36,9 @@ function idChangedHere(id: any) {
} }
const userVideoContainerSet = computed(function () { const userVideoContainerSet = computed(function () {
const onTopUserSet = allOtherChattersIdSet.value.filter((a: any) => a !== inCenterUserVideoId.value);
return { return {
onTopUserSet: allOtherChattersIdSet.value.filter((a: any) => a !== inCenterUserVideoId.value), onTopUserSet,
inCenter: inCenterUserVideoId.value inCenter: inCenterUserVideoId.value
} }
}) })
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
</div> </div>
<div v-if="userDataForThis.calling" class="absolute top-0 left-0 right-0 bottom-0 flex-center flex-col"> <div v-if="userDataForThis.calling" class="absolute top-0 left-0 right-0 bottom-0 flex-center flex-col">
<div class="text-base text-theme-text1">呼叫中...</div> <div class="text-base text-theme-text1">呼叫中...</div>
<a-button shape="circle" status="danger" type="primary" @click="cancelCallExact"> <a-button shape="circle" status="danger" type="primary" @click.stop="cancelCallExact">
<global-icon :size="20" color="var(--color-bg-white)" icon="phone-hangup"></global-icon> <global-icon :size="20" color="var(--color-bg-white)" icon="phone-hangup"></global-icon>
</a-button> </a-button>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment