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
| // 下拉选择
| export default {
| FComponentType: 'select',
| FComponentName: '下拉选择',
| placeholder: '请选择',
| disabled: false,
| filterable: false,
| multiple: false,
| style: { width: '100%' },
| __slot__: {
| options: [{
| label: '选项一',
| value: 1
| }, {
| label: '选项二',
| value: 2
| }]
| },
| __config__: {
| label: '下拉选择',
| showLabel: true,
| labelWidth: null,
| tag: 'el-select',
| tagIcon: 'select',
| defaultValue: '',
| layout: 'colFormItem',
| span: 24,
| required: true,
| regList: [],
| changeTag: true
| }
| }
|
|