forked from github/dataease
Merge pull request #6338 from dataease/pr@dev-v2@refactor_view
refactor: 视图放大隐藏标题
This commit is contained in:
commit
7b6c2e6e7d
@ -94,7 +94,12 @@ const props = defineProps({
|
|||||||
const dynamicAreaId = ref('')
|
const dynamicAreaId = ref('')
|
||||||
const { view, showPosition, element, active, searchCount } = toRefs(props)
|
const { view, showPosition, element, active, searchCount } = toRefs(props)
|
||||||
|
|
||||||
const titleShow = computed(() => element.value.innerType !== 'rich-text' && state.title_show)
|
const titleShow = computed(
|
||||||
|
() =>
|
||||||
|
element.value.innerType !== 'rich-text' &&
|
||||||
|
state.title_show &&
|
||||||
|
showPosition.value !== 'viewDialog'
|
||||||
|
)
|
||||||
|
|
||||||
const snapshotStore = snapshotStoreWithOut()
|
const snapshotStore = snapshotStoreWithOut()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user