Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
center-live
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
center-live
Commits
30cd2a5e
提交
30cd2a5e
authored
4月 22, 2021
作者:
pengxiaohui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改回显数据不统一的问题
上级
6659aa76
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
11 行增加
和
9 行删除
+11
-9
index.vue
src/pages/meeting/tencent-meeting/index.vue
+11
-9
没有找到文件。
src/pages/meeting/tencent-meeting/index.vue
浏览文件 @
30cd2a5e
...
...
@@ -164,7 +164,7 @@
>
准许成员在主持人开始前进入会议
</el-checkbox
>
<el-checkbox
style=
"display: block"
v-model=
"form.mute_enable_join"
>
入会自动静音
</el-checkbox>
<el-checkbox
v-model=
"form.auto_record"
@
change=
"autoRecordChange"
>
自动录制会议
</el-checkbox>
<el-checkbox
v-model=
"form.auto_record"
>
自动录制会议
</el-checkbox>
<el-radio-group
v-model=
"form.auto_record_type"
v-if=
"form.auto_record"
>
<el-radio
label=
"local"
>
本地录制
</el-radio>
<el-radio
label=
"cloud"
>
云录制
</el-radio>
...
...
@@ -250,7 +250,7 @@ export default {
}
const
validateErrMsg
=
(
rule
,
value
,
callback
)
=>
{
// 当开启会议直播时,启用验证,处理callback
if
(
this
.
form
.
isLiv
e
)
{
if
(
this
.
form
.
enable_live
&&
!
valu
e
)
{
const
errMsg
=
rule
.
field
===
'liveTheme'
?
'请输入直播主题'
:
'请输入直播简介'
callback
(
new
Error
(
errMsg
))
}
else
{
...
...
@@ -277,9 +277,9 @@ export default {
password
:
''
,
auto_in_waiting_room
:
false
,
allow_in_before_host
:
true
,
auto_record_type
:
'none'
,
auto_record
:
true
,
auto_record_type
:
'cloud'
,
mute_enable_join
:
false
,
auto_record
:
false
,
enable_live
:
false
,
live_subject
:
''
,
live_summary
:
''
,
...
...
@@ -300,8 +300,8 @@ export default {
{
validator
:
endDateChecked
,
trigger
:
'change'
}
],
moderator
:
[{
required
:
true
,
message
:
'请选择主持人'
,
trigger
:
'change'
}
],
live
Theme
:
[{
validator
:
validateErrMsg
}
],
live
Desc
:
[{
validator
:
validateErrMsg
}
]
live
_subject
:
[{
validator
:
validateErrMsg
}
],
live
_summary
:
[{
validator
:
validateErrMsg
}
]
}
,
startDateOptions
:
{
disabledDate
(
time
)
{
...
...
@@ -617,7 +617,7 @@ export default {
}
if
(
details
.
password
)
{
this
.
form
.
password
=
details
.
password
this
.
hasPwd
=
true
this
.
form
.
hasPwd
=
true
}
const
setting
=
details
.
settings
this
.
form
.
auto_in_waiting_room
=
setting
.
auto_in_waiting_room
...
...
@@ -627,14 +627,16 @@ export default {
this
.
form
.
auto_record
=
true
}
this
.
form
.
mute_enable_join
=
setting
.
mute_enable_join
this
.
form
.
enable_live
=
details
.
enable_live
if
(
details
.
enable_live
===
1
)
{
const
liveConfig
=
details
.
live_config
this
.
form
.
live_subject
=
liveConfig
.
live_subject
this
.
form
.
live_summary
=
liveConfig
.
live_summary
this
.
form
.
enable_live_password
=
liveConfig
.
enable_live_password
this
.
form
.
enable_live_password
=
Boolean
(
liveConfig
.
live_password
)
this
.
form
.
live_password
=
liveConfig
.
live_password
this
.
form
.
enable_live_im
=
liveConfig
.
enable_live_im
this
.
form
.
enable_live
=
true
}
else
{
this
.
form
.
enable_live
=
false
}
if
(
Array
.
isArray
(
details
.
managers
)
&&
details
.
managers
.
length
>
0
)
{
const
_managers
=
details
.
managers
.
map
(
it
=>
it
.
user_id
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论