| 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
28
29
30
31
32
33
 | | // 多选框组 |  | export default { |  |   FComponentType: 'checkbox', |  |   FComponentName: '多选框组', |  |   size: 'medium', |  |   min: null, |  |   max: null, |  |   disabled: false, |  |   style: {}, |  |   __slot__: { |  |     options: [{ |  |       label: '选项一', |  |       value: 1 |  |     }, { |  |       label: '选项二', |  |       value: 2 |  |     }] |  |   }, |  |   __config__: { |  |     label: '多选框组', |  |     tag: 'el-checkbox-group', |  |     tagIcon: 'checkbox', |  |     defaultValue: [], |  |     span: 24, |  |     showLabel: true, |  |     labelWidth: null, |  |     layout: 'colFormItem', |  |     optionType: 'default', |  |     required: true, |  |     regList: [], |  |     border: false |  |   } |  | } | 
 |