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.
44 lines
754 B
44 lines
754 B
2 weeks ago
|
import { BasicColumn } from '@/components/Table';
|
||
|
import { FormSchema } from '@/components/Form';
|
||
|
|
||
|
export const formSchemas: FormSchema[] = [];
|
||
|
|
||
|
export const columns: BasicColumn[] = [
|
||
|
{
|
||
|
title: '计划号',
|
||
|
dataIndex: 'planNum',
|
||
|
},
|
||
|
{
|
||
|
title: '计划日期',
|
||
|
dataIndex: 'planDate',
|
||
|
},
|
||
|
{
|
||
|
title: '子站名称',
|
||
|
dataIndex: 'station',
|
||
|
},
|
||
|
{
|
||
|
title: '子站状态',
|
||
|
dataIndex: 'status',
|
||
|
},
|
||
|
{
|
||
|
title: '所属区域',
|
||
|
dataIndex: 'area',
|
||
|
},
|
||
|
{
|
||
|
title: '运维公司',
|
||
|
dataIndex: 'ioCompany',
|
||
|
},
|
||
|
{
|
||
|
title: '运维人员',
|
||
|
dataIndex: 'ioPerson',
|
||
|
},
|
||
|
{
|
||
|
title: '监理类型',
|
||
|
dataIndex: 'monitorType',
|
||
|
},
|
||
|
{
|
||
|
title: '监理公司',
|
||
|
dataIndex: 'monitorCompany',
|
||
|
},
|
||
|
];
|