36 lines
670 B
TypeScript
36 lines
670 B
TypeScript
import {BasicColumn} from '/@/components/Table';
|
|
import {FormSchema} from '/@/components/Table';
|
|
|
|
//列表数据
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '设备名称',
|
|
align: "center",
|
|
dataIndex: 'deviceName'
|
|
},
|
|
{
|
|
title: '设备类型',
|
|
align: "center",
|
|
dataIndex: 'deviceType_dictText',
|
|
width: 120
|
|
},
|
|
{
|
|
title: '生产厂家',
|
|
align: "center",
|
|
dataIndex: 'factory'
|
|
},
|
|
{
|
|
title: '规格型号',
|
|
align: "center",
|
|
dataIndex: 'deviceModel'
|
|
},
|
|
{
|
|
title: '设备维度',
|
|
align: "center",
|
|
dataIndex: 'dimension',
|
|
width: 120
|
|
},
|
|
];
|
|
|
|
export const searchFormSchema: FormSchema[] = [];
|