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.
|
|
|
import { BasicColumn } from '@/components/Table';
|
|
|
|
import { FormSchema } from '@/components/Form';
|
|
|
|
|
|
|
|
export const formSchemas: FormSchema[] = [];
|
|
|
|
|
|
|
|
export const columns: BasicColumn[] = [
|
|
|
|
{
|
|
|
|
title: '工单编号',
|
|
|
|
dataIndex: 'orderNum',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '工作日期',
|
|
|
|
dataIndex: 'workDate',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '子站名称',
|
|
|
|
dataIndex: 'station',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '子站状态',
|
|
|
|
dataIndex: 'status',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '监理类型',
|
|
|
|
dataIndex: 'monitorType',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '监理人员',
|
|
|
|
dataIndex: 'monitorPerson',
|
|
|
|
},
|
|
|
|
];
|