mirror of
https://github.com/dataease/dataease.git
synced 2026-05-20 11:38:11 +08:00
fix(仪表板、数据大屏): 修复图片组导出模版未导出图片问题 #16162
This commit is contained in:
@@ -174,7 +174,8 @@ function findStaticSourceInner(componentDataInfo, staticResource) {
|
||||
) {
|
||||
staticResource.push(item.propValue['url'])
|
||||
} else if (
|
||||
item.component === 'picture-group' &&
|
||||
item.component === 'UserView' &&
|
||||
item.innerType === 'picture-group' &&
|
||||
item.propValue['urlList'] &&
|
||||
item.propValue['urlList'].length > 0
|
||||
) {
|
||||
|
||||
@@ -178,7 +178,11 @@ const toolTip = computed(() => {
|
||||
})
|
||||
|
||||
const templateStatusShow = computed(() => {
|
||||
return view.value['dataFrom'] === 'template' && !mobileInPc.value
|
||||
return (
|
||||
view.value['dataFrom'] === 'template' &&
|
||||
view.value.type !== 'picture-group' &&
|
||||
!mobileInPc.value
|
||||
)
|
||||
})
|
||||
|
||||
const { view } = toRefs(props)
|
||||
|
||||
Reference in New Issue
Block a user