diff --git a/src/components/Designer/src/types/index.ts b/src/components/Designer/src/types/index.ts
index a410485..7bcf742 100644
--- a/src/components/Designer/src/types/index.ts
+++ b/src/components/Designer/src/types/index.ts
@@ -146,6 +146,8 @@ export const basicComponents = [
typeName: t('编辑器'),
type: 'richtext-editor',
options: {
+ labelWidthMode: 'fix',
+ labelFixWidth: 120,
span: '',
defaultValue: '',
width: '100%',
diff --git a/src/components/Form/src/components/ApiCheckboxGroup.vue b/src/components/Form/src/components/ApiCheckboxGroup.vue
index 5fa8450..79e3736 100644
--- a/src/components/Form/src/components/ApiCheckboxGroup.vue
+++ b/src/components/Form/src/components/ApiCheckboxGroup.vue
@@ -2,202 +2,207 @@
* @Description:It is troublesome to implement radio button group in the form. So it is extracted independently as a separate component
-->
-
-
-
- {{ item.label }}
-
-
-
+
+
+
+
+ {{ item.label }}
+
+
+
+
+ {{ displayText() }}
+
+
diff --git a/src/components/Form/src/components/ApiRadioGroup.vue b/src/components/Form/src/components/ApiRadioGroup.vue
index 8b6d5a8..bcc8059 100644
--- a/src/components/Form/src/components/ApiRadioGroup.vue
+++ b/src/components/Form/src/components/ApiRadioGroup.vue
@@ -2,200 +2,201 @@
* @Description:It is troublesome to implement radio button group in the form. So it is extracted independently as a separate component
-->
-
-
-
- {{ item.label }}
-
-
- {{ item.label }}
-
-
-
+
+
+
+
+ {{ item.label }}
+
+
+ {{ item.label }}
+
+
+
+
+ {{ displayText() }}
+
+
diff --git a/src/components/SimpleForm/src/components/SimpleFormItem.vue b/src/components/SimpleForm/src/components/SimpleFormItem.vue
index 39605e3..c067877 100644
--- a/src/components/SimpleForm/src/components/SimpleFormItem.vue
+++ b/src/components/SimpleForm/src/components/SimpleFormItem.vue
@@ -417,7 +417,7 @@
}
function readonlySupport(name) {
- return /^(Input|AutoCodeRule|DatePicker|Text|TimePicker|Range|RichTextEditor)$/.test(name);
+ return /^(Input|AutoCodeRule|DatePicker|Text|TimePicker|Range|RichTextEditor|TimeRangePicker|RangePicker|InputTextArea)$/.test(name);
}
function getShow(schema: FormSchema): boolean {