| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | | // 多行文本 |  | export default { |  |   FComponentType: 'multiText', |  |   FComponentName: '多行文本', |  |   type: 'textarea', |  |   placeholder: '请输入', |  |   maxlength: null, |  |   readonly: false, |  |   disabled: false, |  |   autosize: { |  |     minRows: 4, |  |     maxRows: 4 |  |   }, |  |   style: { width: '100%' }, |  |   __config__: { |  |     label: '多行文本', |  |     labelWidth: null, |  |     showLabel: true, |  |     tag: 'el-input', |  |     tagIcon: 'textarea', |  |     defaultValue: undefined, |  |     required: true, |  |     layout: 'colFormItem', |  |     span: 24, |  |     regList: [] |  |   } |  | } | 
 |