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.
48 lines
838 B
48 lines
838 B
2 months ago
|
import { BasicColumn } from '@/components/Table';
|
||
|
import { FormSchema } from '@/components/Form';
|
||
|
|
||
|
export const formSchemas: FormSchema[] = [];
|
||
|
|
||
|
export const columns: BasicColumn[] = [
|
||
|
{
|
||
|
title: '子站名称',
|
||
|
dataIndex: 'station',
|
||
|
},
|
||
|
{
|
||
|
title: '所属区域',
|
||
|
dataIndex: 'area',
|
||
|
},
|
||
|
{
|
||
|
title: '运维公司',
|
||
|
dataIndex: 'ioCompany',
|
||
|
},
|
||
|
{
|
||
|
title: '开始时间',
|
||
|
dataIndex: 'startDate',
|
||
|
},
|
||
|
{
|
||
|
title: '结束时间',
|
||
|
dataIndex: 'endDate',
|
||
|
},
|
||
|
{
|
||
|
title: '监测项目',
|
||
|
dataIndex: 'monitorProject',
|
||
|
},
|
||
|
{
|
||
|
title: '自动监测(mg/m³)',
|
||
|
dataIndex: 'autoMonitor',
|
||
|
},
|
||
|
{
|
||
|
title: '手动监测(mg/m³)',
|
||
|
dataIndex: 'handleMonitor',
|
||
|
},
|
||
|
{
|
||
|
title: '相对误差',
|
||
|
dataIndex: 'difference',
|
||
|
},
|
||
|
{
|
||
|
title: '结论',
|
||
|
dataIndex: 'result',
|
||
|
},
|
||
|
];
|