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 [
| {
| type: 'text',
| dataIndex: 'dictName',
| label: '部门名称',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'text',
| dataIndex: 'dictName',
| label: '编号',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'select',
| dataIndex: 'status',
| label: '状态',
| placeholder: '请选择',
| defaultValue: '0',
| options: [
| {
| value: '0',
| label: '启用'
| },
| {
| value: '1',
| label: '禁用'
| }
| ]
| }
| ]
|
|