duhuizhe
2023-10-16 3aa55dd3f62cee2c1c4c0aa74e1570acf83f8927
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
export default [
  {
    type: 'text',
    dataIndex: 'projectName',
    label: '项目名称',
    defaultValue: ''
  },
  {
    type: 'text',
    dataIndex: 'projectCode',
    label: '项目编号',
    defaultValue: ''
  },
  {
    type: 'cascader',
    dataIndex: 'projectCategoryId',
    label: '分类',
    optionsConfig: {
      url: '/pc/p/project/category/tree',
      props:{checkStrictly: false,value: 'id'}
    },
    options: []
  },
  {
    type: 'cascader',
    dataIndex: 'buildOrgId',
    label: '建设单位',
    optionsConfig: {
      url: '/pc/fin/sys/tenant/select/tree_fin_tenant'
    },
    options: []
  },
  {
    type: 'select',
    dataIndex: 'cancelStatus',
    label: '状态',
    defaultValue: '',
    options: [
      {
        value: 0,
        label: '未取消'
      },
      {
        value: 1,
        label: '已取消'
      }
    ]
  },
  {
    type: 'datetimerange-picker',
    dataIndex: 'approvalDate',
    label: '批复时间',
    defaultValue: '',
    format:'yyyy-MM-dd'
  },
  {
    type: 'datetimerange-picker',
    dataIndex: 'createTime',
    label: '创建时间',
    defaultValue: '',
  },
]