|
@ -76,3 +76,72 @@ export const PlaninfoFiletableColumns: BasicColumn[] = [ |
|
|
}, |
|
|
}, |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
|
|
|
export const searchFormSchema: FormSchema[] = [ |
|
|
|
|
|
{ |
|
|
|
|
|
label: '项目名称', |
|
|
|
|
|
field: 'projectName', |
|
|
|
|
|
component: 'Input', |
|
|
|
|
|
labelWidth: 'auto' |
|
|
|
|
|
//colProps: { span: 6 },
|
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
label: '行政区划', |
|
|
|
|
|
field: 'adminDivision', |
|
|
|
|
|
component: 'Input', |
|
|
|
|
|
labelWidth: 'auto' |
|
|
|
|
|
//colProps: { span: 6 },
|
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
//标题名称
|
|
|
|
|
|
label: '责任单位', |
|
|
|
|
|
//字段
|
|
|
|
|
|
field: 'dutyWorkplace', |
|
|
|
|
|
//组件 支持组件详见 components/Form/src/types/index.ts 中的 ComponentType
|
|
|
|
|
|
component: 'Input', |
|
|
|
|
|
labelWidth: 'auto' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
//标题名称
|
|
|
|
|
|
label: '单位属性', |
|
|
|
|
|
//字段
|
|
|
|
|
|
field: 'workplaceProperties', |
|
|
|
|
|
//组件 支持组件详见 components/Form/src/types/index.ts 中的 ComponentType
|
|
|
|
|
|
component: 'Input', |
|
|
|
|
|
labelWidth: 'auto' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
field: 'reformName', |
|
|
|
|
|
label: '改革所属项目', |
|
|
|
|
|
component: 'DictSelect', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
dictType: 'reformTasks', |
|
|
|
|
|
}, |
|
|
|
|
|
itemProps: { validateTrigger: 'blur' }, |
|
|
|
|
|
labelWidth: 'auto' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
field: 'superLeader', |
|
|
|
|
|
label: '上级指导处室', |
|
|
|
|
|
component: 'DictSelect', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
dictType: 'superLeader', |
|
|
|
|
|
}, |
|
|
|
|
|
labelWidth: 'auto' |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
// {
|
|
|
|
|
|
// field: 'stage',
|
|
|
|
|
|
// label: '项目状态',
|
|
|
|
|
|
// component: 'Select',
|
|
|
|
|
|
// componentProps: {
|
|
|
|
|
|
// options: [
|
|
|
|
|
|
// { label: '项目入库完成', value: '2' },
|
|
|
|
|
|
// { label: '项目计划审批中', value: '4' },
|
|
|
|
|
|
// { label: '项目计划执行中', value: '5' },
|
|
|
|
|
|
// { label: '项目计划完成 ', value: '6' },
|
|
|
|
|
|
// ]
|
|
|
|
|
|
// },
|
|
|
|
|
|
// labelWidth: 'auto'
|
|
|
|
|
|
|
|
|
|
|
|
// },
|
|
|
|
|
|
]; |