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