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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| export default [
| {
| type: 'text',
| dataIndex: 'categoryName',
| label: '分类名称',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'select',
| dataIndex: 'classification',
| label: '类别',
| placeholder: '请选择',
| defaultValue: '1',
| options: [
| {
| label: 'A',
| value: 'A'
| },
| {
| label: 'B',
| value: 'B'
| },
| {
| label: 'C',
| value: 'C'
| }
| ]
| },
| {
| type: 'select',
| dataIndex: 'states',
| label: '状态',
| placeholder: '请选择',
| defaultValue: '1',
| options: [
| {
| label: '启用',
| value: '1'
| },
| {
| label: '禁用',
| value: '0'
| }
| ]
| }
| ]
|
|