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: 'monitorType', }, { title: '监理人员', dataIndex: 'monitorPerson', }, ];