运维管理平台前端
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.

71 lines
1.2 KiB

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