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
| // 时间选择
| export default {
| FComponentType: 'timePicker',
| FComponentName: '时间选择',
| placeholder: '请选择',
| disabled: false,
| format: 'HH:mm:ss',
| 'value-format': 'HH:mm:ss',
| 'picker-options': {
| selectableRange: '00:00:00-23:59:59'
| },
| style: { width: '100%' },
| __config__: {
| label: '时间选择',
| tag: 'el-time-picker',
| tagIcon: 'time',
| defaultValue: null,
| span: 24,
| showLabel: true,
| layout: 'colFormItem',
| labelWidth: null,
| required: true,
| regList: []
| }
| }
|
|