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
| // 时间范围
| export default {
| FComponentType: 'timeRange',
| FComponentName: '时间范围',
| disabled: false,
| 'is-range': true,
| 'range-separator': '至',
| 'start-placeholder': '开始时间',
| 'end-placeholder': '结束时间',
| format: 'HH:mm:ss',
| 'value-format': 'HH:mm:ss',
| style: { width: '100%' },
| __config__: {
| label: '时间范围',
| tag: 'el-time-picker',
| tagIcon: 'time-range',
| span: 24,
| showLabel: true,
| labelWidth: null,
| layout: 'colFormItem',
| defaultValue: null,
| required: true,
| regList: [],
| changeTag: true // 允许“右面板”切换控件
| }
| }
|
|