Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
standalone-anyremote
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qlintonger xeno
standalone-anyremote
Commits
dea3ed92
Commit
dea3ed92
authored
May 06, 2024
by
qlintonger xeno
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加内容+7
parent
f7a042f5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
src/views/remote/videoCall/videoInfo.vue
+5
-1
src/views/remote/videoCall/videoTools.vue
+5
-1
No files found.
src/views/remote/videoCall/videoInfo.vue
View file @
dea3ed92
...
...
@@ -16,7 +16,7 @@
</a-space>
</div>
<!-- 其余的视频窗口 -->
<video-slider
class=
"mb-3 px-4"
:id-set=
"userVideoContainerSet.onTopUserSet"
></video-slider>
<video-slider
class=
"mb-3 px-4"
@
handle-click=
"idChangedHere"
:id-set=
"userVideoContainerSet.onTopUserSet"
></video-slider>
<!-- 放大的窗口 -->
<video-tools
:id=
"userVideoContainerSet.inCenter"
class=
"px-4 flex flex-col flex-auto"
></video-tools>
</div>
...
...
@@ -34,6 +34,10 @@ onMounted(function () {
inCenterUserVideoId
.
value
=
allOtherChattersIdSet
.
value
[
0
]
})
function
idChangedHere
(
id
:
any
)
{
inCenterUserVideoId
.
value
=
id
;
}
const
userVideoContainerSet
=
computed
(
function
()
{
return
{
onTopUserSet
:
allOtherChattersIdSet
.
value
.
filter
((
a
:
any
)
=>
a
!==
inCenterUserVideoId
.
value
),
...
...
src/views/remote/videoCall/videoTools.vue
View file @
dea3ed92
...
...
@@ -53,7 +53,7 @@ import { isUserHost } from 'AnyR/states/chatChannelStates'
import
{
ref
}
from
'vue'
import
{
isCurrentUserMuted
}
from
'AnyR/states/chatChannelStates'
import
{
screenShareMetaData
}
from
'AnyR/states/chatChannelStates'
import
{
onMounted
}
from
"vue"
;
import
{
onMounted
,
onUpdated
}
from
"vue"
;
const
ps
=
defineProps
<
{
id
:
any
...
...
@@ -63,6 +63,10 @@ onMounted(function () {
AnyR
?.
agora
.
forceReplay
(
ps
.
id
)
})
onUpdated
(
function
()
{
AnyR
?.
agora
.
forceReplay
(
ps
.
id
)
})
const
isVoiceChatOnly
=
ref
(
false
)
const
AnyR
=
useAnyR
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment