forked from github/dataease
Merge pull request #11772 from dataease/pr@dev-v2@fix_tab
fix(数据大屏、仪表板): 修复Tab页初次预览不显示问题,轮播时间输入回车页面筛选等问题
This commit is contained in:
commit
8bbe53f608
@ -299,8 +299,8 @@ const pointShadowShow = computed(() => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
const curGap = computed(() => {
|
const curGap = computed(() => {
|
||||||
return dashboardActive.value && canvasStyleData.value.dashboard.gap === 'yes'
|
return dashboardActive.value && canvasStyleData.value?.dashboard?.gap === 'yes'
|
||||||
? canvasStyleData.value.dashboard.gapSize
|
? canvasStyleData.value?.dashboard?.gapSize
|
||||||
: 0
|
: 0
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -237,8 +237,8 @@ const getShapeItemShowStyle = item => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const curGap = computed(() => {
|
const curGap = computed(() => {
|
||||||
return dashboardActive.value && canvasStyleData.value.dashboard.gap === 'yes'
|
return dashboardActive.value && canvasStyleData.value?.dashboard?.gap === 'yes'
|
||||||
? canvasStyleData.value.dashboard.gapSize
|
? canvasStyleData.value?.dashboard?.gapSize
|
||||||
: 0
|
: 0
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ const handleInput = value => {
|
|||||||
title="轮播"
|
title="轮播"
|
||||||
>
|
>
|
||||||
<el-row class="custom-row">
|
<el-row class="custom-row">
|
||||||
<el-form label-position="top">
|
<el-form label-position="top" @submit.prevent>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
class="form-item"
|
class="form-item"
|
||||||
:class="'form-item-' + themes"
|
:class="'form-item-' + themes"
|
||||||
|
Loading…
Reference in New Issue
Block a user