提交 b43f6cd3 authored 作者: pengxiaohui's avatar pengxiaohui

创建会议默认开启云录制

上级 30cd2a5e
<template>
<div class="schedule-item" :style="{'min-width': minWidth}">
<template v-for="ev in schedule.events" >
<div :key="ev.start_time" class="schedule-event" :style="{ height: getHeight(ev) + 'px', top: getTop(ev) + 'px' }">
<div :key="ev.start_time + ev.id" class="schedule-event" :style="{ height: getHeight(ev) + 'px', top: getTop(ev) + 'px' }">
<slot name="content" :data="ev">
<div class="schedule-ev-inner">
<h5>{{ev.title}}</h5>
......
......@@ -104,6 +104,8 @@ export default {
startTime: getCurHalfHour('start'),
endDate: this.date,
endTime: getCurHalfHour('end'),
auto_record: true,
auto_record_type: 'cloud',
enable_live: false,
live_subject: '',
live_summary: ''
......@@ -268,6 +270,10 @@ export default {
end_time: dateFormat(this.endTimestamp),
meeting_type: 0,
enable_live: form.enable_live,
settings: {
auto_record_type: 'cloud',
mute_enable_join: false
},
live_config: {
live_subject: form.live_subject,
live_summary: form.live_summary
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论