+
diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts
index fbb30aba60..8a58280f51 100644
--- a/core/core-frontend/src/locales/zh-CN.ts
+++ b/core/core-frontend/src/locales/zh-CN.ts
@@ -2000,7 +2000,7 @@ export default {
borderStyle: '边框风格',
borderWidth: '边框宽度',
borderColor: '边框颜色',
- borderRadius: '边框半径',
+ borderRadius: '圆角',
fontSize: '字体大小',
fontWeight: '字体粗细',
lineHeight: '行高',
diff --git a/core/core-frontend/src/utils/attr.ts b/core/core-frontend/src/utils/attr.ts
index 341020af27..1ff4c624c8 100644
--- a/core/core-frontend/src/utils/attr.ts
+++ b/core/core-frontend/src/utils/attr.ts
@@ -11,7 +11,7 @@ export const styleData = [
{ key: 'borderWidth', label: '边框宽度', min: 0, max: 20, step: 1 },
{ key: 'borderStyle', label: '边框风格' },
{ key: 'borderColor', label: '边框颜色' },
- { key: 'borderRadius', label: '边框半径', min: 0, max: 50, step: 1 },
+ { key: 'borderRadius', label: '圆角', min: 0, max: 50, step: 1 },
{ key: 'letterSpacing', label: '字间距', min: 0, max: 50, step: 1 },
{ key: 'fontSize', label: '字体大小', min: 0, max: 128, step: 1 },
{ key: 'activeFontSize', label: '激活字体大小', min: 0, max: 128, step: 1 },
@@ -38,7 +38,7 @@ export const styleMap = {
borderWidth: '边框宽度',
borderStyle: '边框风格',
borderColor: '边框颜色',
- borderRadius: '边框半径',
+ borderRadius: '圆角',
fontSize: '字体大小',
fontWeight: '字体粗细',
lineHeight: '行高',
diff --git a/core/core-frontend/src/utils/canvasStyle.ts b/core/core-frontend/src/utils/canvasStyle.ts
index 9fc8318a06..80a846696a 100644
--- a/core/core-frontend/src/utils/canvasStyle.ts
+++ b/core/core-frontend/src/utils/canvasStyle.ts
@@ -381,7 +381,9 @@ export function adaptCurThemeCommonStyle(component) {
// 背景融合-Begin 如果是大屏['CanvasBoard', 'CanvasIcon', 'Picture']组件不需要设置背景
if (
dvMainStore.dvInfo.type === 'dataV' &&
- ['CanvasBoard', 'CanvasIcon', 'Picture', 'Group'].includes(component.component)
+ ['CanvasBoard', 'CanvasIcon', 'Picture', 'Group', 'SvgTriangle', 'SvgStar'].includes(
+ component.component
+ )
) {
component.commonBackground['backgroundColorSelect'] = false
component.commonBackground['innerPadding'] = 0
diff --git a/core/core-frontend/src/views/visualized/view/panel/filter-config/index.vue b/core/core-frontend/src/views/visualized/view/panel/filter-config/index.vue
index 0cc63e3081..cdf76e24a6 100644
--- a/core/core-frontend/src/views/visualized/view/panel/filter-config/index.vue
+++ b/core/core-frontend/src/views/visualized/view/panel/filter-config/index.vue
@@ -284,7 +284,7 @@ const handleTabClick = () => {