Merge pull request #10029 from dataease/pr@dev-v2@fix_video

fix(仪表板): 修复仪表板中多个视频组件配置信息可能相互影响问题
This commit is contained in:
王嘉豪 2024-06-03 12:14:47 +08:00 committed by GitHub
commit a0aeea66eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -80,7 +80,7 @@ const onBlur = () => {
}
init()
watch(
frameLinks.value,
() => frameLinks.value,
() => {
init()
},

View File

@ -112,7 +112,7 @@ const onChange = () => {
init()
watch(
linkInfo.value,
() => linkInfo.value,
() => {
init()
},

View File

@ -1,5 +1,6 @@
<template>
<el-row>
--{{ linkInfo }}
<el-form @submit.prevent ref="form" size="small" style="width: 100%">
<el-form-item :effect="themes" :label="t('visualization.auto_play')">
<el-switch
@ -105,7 +106,7 @@ const onBlur = () => {
init()
watch(
linkInfo.value,
() => linkInfo.value,
() => {
init()
},