diff --git a/packages/amis-theme-editor-helper/src/renderers/Border.tsx b/packages/amis-theme-editor-helper/src/renderers/Border.tsx
index 02e73365f..72fe6923c 100644
--- a/packages/amis-theme-editor-helper/src/renderers/Border.tsx
+++ b/packages/amis-theme-editor-helper/src/renderers/Border.tsx
@@ -270,16 +270,18 @@ function BoxBorder(props: BorderProps & FormControlProps) {
}-border-width`}
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.[getKey('width')]}
+ placeholder={editorDefaultValue?.[getKey('width')] || '边框粗细'}
/>
diff --git a/packages/amis-theme-editor-helper/src/renderers/Font.tsx b/packages/amis-theme-editor-helper/src/renderers/Font.tsx
index 5309c7082..83bb3b7f4 100644
--- a/packages/amis-theme-editor-helper/src/renderers/Font.tsx
+++ b/packages/amis-theme-editor-helper/src/renderers/Font.tsx
@@ -1001,7 +1001,7 @@ function FontEditor(props: FontEditorProps) {
}}
itemName="color"
state={state}
- placeholder={editorDefaultValue?.color}
+ placeholder={editorDefaultValue?.color || '字体颜色'}
editorInheritValue={editorInheritValue?.color}
/>
@@ -1019,7 +1019,7 @@ function FontEditor(props: FontEditorProps) {
menuTpl="label"
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.fontSize}
+ placeholder={editorDefaultValue?.fontSize || '字体大小'}
/>
)}
@@ -1038,7 +1038,7 @@ function FontEditor(props: FontEditorProps) {
menuTpl="label"
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.fontWeight}
+ placeholder={editorDefaultValue?.fontWeight || '字体字重'}
/>
{(!hideLineHeight || !hideFontFamily) && (
字重
@@ -1058,7 +1058,7 @@ function FontEditor(props: FontEditorProps) {
menuTpl="label"
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.lineHeight}
+ placeholder={editorDefaultValue?.lineHeight || '字体行高'}
/>
行高
diff --git a/packages/amis-theme-editor-helper/src/renderers/PaddingAndMargin.tsx b/packages/amis-theme-editor-helper/src/renderers/PaddingAndMargin.tsx
index 5a5322421..ce8c74174 100644
--- a/packages/amis-theme-editor-helper/src/renderers/PaddingAndMargin.tsx
+++ b/packages/amis-theme-editor-helper/src/renderers/PaddingAndMargin.tsx
@@ -231,7 +231,7 @@ function PaddingAndMarginDialog(props: PaddingAndMarginProps) {
itemName="margin-all"
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.margin}
+ placeholder={editorDefaultValue?.margin || '外边距'}
/>
外边距
@@ -250,7 +250,7 @@ function PaddingAndMarginDialog(props: PaddingAndMarginProps) {
itemName="padding-all"
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.padding}
+ placeholder={editorDefaultValue?.padding || '内边距'}
/>
内边距
diff --git a/packages/amis-theme-editor-helper/src/renderers/Radius.tsx b/packages/amis-theme-editor-helper/src/renderers/Radius.tsx
index 6b088296c..e468876d9 100644
--- a/packages/amis-theme-editor-helper/src/renderers/Radius.tsx
+++ b/packages/amis-theme-editor-helper/src/renderers/Radius.tsx
@@ -196,7 +196,7 @@ function BoxRadius(props: RadiusProps & RendererProps) {
itemName={'all-border-radius'}
state={state}
inheritValue={editorThemePath ? 'inherit' : ''}
- placeholder={editorDefaultValue?.[getKey('all')]}
+ placeholder={editorDefaultValue?.[getKey('all')] || '圆角'}
/>