作者 dong

富文本修改成textarea

@@ -193,7 +193,15 @@ export const formSchema: FormSchema[] = [ @@ -193,7 +193,15 @@ export const formSchema: FormSchema[] = [
193 label: '文本内容', 193 label: '文本内容',
194 field: 'text', 194 field: 'text',
195 required: true, 195 required: true,
196 - component: 'JEditor', 196 + component: 'InputTextArea',
  197 + componentProps: {
  198 + allowClear: true,
  199 + showCount: true,
  200 + autoSize: {
  201 + minRows: 6,
  202 + maxRows: 6,
  203 + },
  204 + },
197 }, 205 },
198 // 新增知识库选择字段 206 // 新增知识库选择字段
199 { 207 {