diff --git a/packages/amis-editor/src/plugin/Form/Form.tsx b/packages/amis-editor/src/plugin/Form/Form.tsx index 068b3f49c..2141c006b 100644 --- a/packages/amis-editor/src/plugin/Form/Form.tsx +++ b/packages/amis-editor/src/plugin/Form/Form.tsx @@ -978,7 +978,7 @@ export class FormPlugin extends BasePlugin { type: 'string', title: itemSchema.label || itemSchema.name }), - group: `${schema.label || schema.name}的当前行记录` + group: `当前行记录(${schema.label || schema.name})` }; } } @@ -1005,7 +1005,7 @@ export class FormPlugin extends BasePlugin { jsonschema.properties[col.name] = { type: 'string', title: col.label || col.name, - group: `${schema.label || schema.name}的当前行记录` + group: `当前行记录(${schema.label || schema.name})` }; } } diff --git a/packages/amis-editor/src/renderer/event-control/helper.tsx b/packages/amis-editor/src/renderer/event-control/helper.tsx index 8120246b0..2e2dc2614 100644 --- a/packages/amis-editor/src/renderer/event-control/helper.tsx +++ b/packages/amis-editor/src/renderer/event-control/helper.tsx @@ -1610,11 +1610,11 @@ export const ACTION_TYPE_TREE = (manager: any): RendererPluginAction[] => { properties: { error: { type: 'string', - title: '错误提示' + title: '错误信息' }, errors: { type: 'object', - title: '错误信息' + title: '错误详情' }, payload: { type: 'object', @@ -1622,7 +1622,7 @@ export const ACTION_TYPE_TREE = (manager: any): RendererPluginAction[] => { }, responseData: { type: 'object', - title: '提交请求返回的响应结果数据' + title: '提交请求的响应数据' } } } @@ -1702,11 +1702,11 @@ export const ACTION_TYPE_TREE = (manager: any): RendererPluginAction[] => { properties: { error: { type: 'string', - title: '错误提示' + title: '错误信息' }, errors: { type: 'object', - title: '错误信息' + title: '错误详情' }, payload: { type: 'object',