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.
42 lines
742 B
42 lines
742 B
6 months ago
|
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',
|
||
|
},
|
||
|
];
|