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.
36 lines
631 B
36 lines
631 B
2 weeks ago
|
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: 'area',
|
||
|
},
|
||
|
{
|
||
|
title: '监理类型',
|
||
|
dataIndex: 'monitorType',
|
||
|
},
|
||
|
{
|
||
|
title: '监理公司',
|
||
|
dataIndex: 'monitorCompany',
|
||
|
},
|
||
|
];
|