2026-03-27 17:42:01 +08:00
|
|
|
import {BasicColumn} from '/@/components/Table';
|
|
|
|
|
import {FormSchema} from '/@/components/Table';
|
|
|
|
|
|
|
|
|
|
//列表数据
|
|
|
|
|
export const columns: BasicColumn[] = [
|
2026-04-07 18:01:07 +08:00
|
|
|
{
|
|
|
|
|
title: '设备名称',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'deviceName'
|
|
|
|
|
},
|
2026-03-27 17:42:01 +08:00
|
|
|
{
|
|
|
|
|
title: '设备类型',
|
|
|
|
|
align: "center",
|
2026-04-22 17:45:39 +08:00
|
|
|
dataIndex: 'deviceType_dictText',
|
|
|
|
|
width: 120
|
2026-03-27 17:42:01 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-04-22 17:45:39 +08:00
|
|
|
title: '生产厂家',
|
2026-03-27 17:42:01 +08:00
|
|
|
align: "center",
|
2026-04-22 17:45:39 +08:00
|
|
|
dataIndex: 'factory'
|
2026-03-27 17:42:01 +08:00
|
|
|
},
|
|
|
|
|
{
|
2026-04-22 17:45:39 +08:00
|
|
|
title: '规格型号',
|
2026-03-27 17:42:01 +08:00
|
|
|
align: "center",
|
2026-04-22 17:45:39 +08:00
|
|
|
dataIndex: 'deviceModel'
|
2026-03-27 17:42:01 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '设备维度',
|
|
|
|
|
align: "center",
|
2026-04-22 17:45:39 +08:00
|
|
|
dataIndex: 'dimension',
|
|
|
|
|
width: 120
|
2026-03-27 17:42:01 +08:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export const searchFormSchema: FormSchema[] = [];
|