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 }, } ];