| 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: 'upload', |  |   FComponentName: '上传', |  |   action: 'https://jsonplaceholder.typicode.com/posts/', |  |   disabled: false, |  |   accept: '', |  |   name: 'file', |  |   'auto-upload': true, |  |   'list-type': 'text', |  |   multiple: false, |  |   __slot__: { |  |     'list-type': true |  |   }, |  |   __config__: { |  |     label: '上传', |  |     tag: 'el-upload', |  |     tagIcon: 'upload', |  |     layout: 'colFormItem', |  |     defaultValue: null, |  |     showLabel: true, |  |     labelWidth: null, |  |     required: true, |  |     span: 24, |  |     showTip: false, |  |     buttonText: '点击上传', |  |     regList: [], |  |     changeTag: true, |  |     fileSize: 2, |  |     sizeUnit: 'MB' |  |   } |  | } | 
 |