import { BasicColumn } from '@/components/Table'; import { FormSchema } from '@/components/Form'; export const formSchemas: FormSchema[] = [ { field: 'projectName', label: '项目名称', component: 'Select', componentProps: { options: [ ], }, }, ]; export const columns: BasicColumn[] = [ { title: '所属项目', dataIndex: 'projectName', }, { title: '所属合同', dataIndex: 'contractName', }, { title: '延期原因', dataIndex: 'delayReason', }, { title: '延期前时间', dataIndex: 'beforeDelayTime', }, { title: '延期后时间', dataIndex: 'AfterDelayTime', }, { title: '处理结果', dataIndex: 'handleResult', }, ];