You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1010 B
58 lines
1010 B
1 year ago
|
import { FormSchema } from '/@/components/Form';
|
||
|
import { BasicColumn } from '/@/components/Table';
|
||
|
|
||
|
export const columns: BasicColumn[] = [
|
||
|
|
||
|
{
|
||
|
title: '项目编号',
|
||
|
width: 150,
|
||
|
dataIndex: 'projectId',
|
||
|
},
|
||
|
{
|
||
|
title: '项目名称',
|
||
|
dataIndex: 'projectName',
|
||
|
width: 150,
|
||
|
},
|
||
|
{
|
||
|
title: '主要任务及标志性成果',
|
||
|
dataIndex: 'description',
|
||
|
width: 150,
|
||
|
},
|
||
|
{
|
||
|
title: '责任单位',
|
||
|
dataIndex: 'dutyWorkplace',
|
||
|
width: 100,
|
||
|
},
|
||
|
{
|
||
|
title: '发起单位',
|
||
|
dataIndex: 'workplace',
|
||
|
width: 100,
|
||
|
},
|
||
|
{
|
||
|
title: '发起单位类型',
|
||
|
dataIndex: 'workplaceTpye',
|
||
|
width: 200,
|
||
|
},
|
||
|
{
|
||
|
title: '联系电话',
|
||
|
width: 150,
|
||
|
dataIndex: 'phone',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const searchFormSchema: FormSchema[] = [
|
||
|
{
|
||
|
label: '项目名称',
|
||
|
field: 'project',
|
||
|
component: 'Input',
|
||
|
//colProps: { span: 6 },
|
||
|
},
|
||
|
{
|
||
|
label: '项目编号',
|
||
|
field: 'project',
|
||
|
component: 'Input',
|
||
|
//colProps: { span: 6 },
|
||
|
}
|
||
|
|
||
|
];
|