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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| export default [
| {
| type: 'text',
| dataIndex: 'projectName',
| label: '项目名称',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'text',
| dataIndex: 'projectCode',
| label: '项目编号',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'cascader',
| dataIndex: 'projectCategoryId',
| label: '分类',
| placeholder: '请选择',
| optionsConfig: {
| url: '/pc/p/project/category/tree',
| props:{checkStrictly: false,value: 'id'}
| },
| options: []
| },
| {
| type: 'cascader',
| dataIndex: 'buildOrgId',
| label: '建设单位',
| placeholder: '请选择',
| optionsConfig: {
| url: '/pc/fin/sys/tenant/select/tree_fin_tenant'
| },
| options: []
| },
| {
| type: 'select',
| dataIndex: 'archiveStatus',
| label: '状态',
| placeholder: '请选择',
| defaultValue: '',
| options: [
| {
| value: -1,
| label: '未归档'
| },
| {
| value: 0,
| label: '审核中'
| },
| {
| value: 1,
| label: '拒绝归档'
| },
| {
| value: 2,
| label: '已归档'
| }
| ]
| },
| {
| type: 'datetimerange-picker',
| dataIndex: 'approvalDate',
| label: '批复时间',
| placeholder: '请选择',
| defaultValue: '',
| format:'yyyy-MM-dd'
| },
| {
| type: 'datetimerange-picker',
| dataIndex: 'createTime',
| placeholder: '请选择',
| label: '创建时间',
| defaultValue: '',
| },
| ]
|
|