diff --git a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts index 37cad0c879..23479f03d1 100644 --- a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts +++ b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts @@ -569,7 +569,10 @@ export const dvMainStore = defineStore('dataVisualization', { mixPropertiesTemp = deepCopy(componentInfo.properties) mixPropertyInnerTemp = deepCopy(componentInfo.propertyInner) } - batchAttachInfo.type = componentInfo.value + batchAttachInfo.type = + batchAttachInfo.type === null || batchAttachInfo.type === componentInfo.value + ? componentInfo.value + : 'mix' } mixPropertiesTemp.forEach(property => { if (mixPropertyInnerTemp[property]) { diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/ChartStyle.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/ChartStyle.vue index fd70f29ec7..54707fee91 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/ChartStyle.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/ChartStyle.vue @@ -271,7 +271,7 @@ watch( diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue index 12d063fc9e..8406c6e0cc 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/LabelSelector.vue @@ -210,7 +210,6 @@ onMounted(() => { :model="state.labelForm" label-position="top" > - 无其他公共属性