import { BasicColumn } from '@/components/Table'; import { FormSchema } from '@/components/Form'; export const formSchemas: FormSchema[] = [ { field: 'area', label: '所在区域', component: 'Select', componentProps: { options: [], }, }, { field: 'station', label: '站点', component: 'Select', componentProps: { options: [], }, }, { field: 'monitorCompany', label: '监理公司', component: 'Select', componentProps: { options: [{ value:'宁波国研信息科技有限公司' }], }, }, ]; export const columns: BasicColumn[] = [ { title: '站点', dataIndex: 'station', }, { title: '所属区域', dataIndex: 'area', }, { title: '设备名称', dataIndex: 'device', }, { title: '设备型号', dataIndex: 'model', }, { title: '生产厂家', dataIndex: 'manufacturer', }, { title: '生产日期', dataIndex: 'manufactureDate', }, { title: '序列号', dataIndex: 'number', }, { title: '检测物', dataIndex: 'testSubstance', }, { title: '状态', dataIndex: 'status', }, ];