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', }, ];