@jdlinker/linker
Version:
jdLinker 系统模块
49 lines (47 loc) • 851 B
text/typescript
import { BasicColumn, FormSchema } from '@jdlinker/ui';
//列表数据
export const columns: BasicColumn[] = [
{
title: '设备名称',
align: 'center',
dataIndex: 'deviceName',
},
{
title: '所属产品',
align: 'center',
dataIndex: 'productId',
},
{
title: '创建时间',
align: 'center',
dataIndex: 'createTime',
},
{
title: '完成时间',
align: 'center',
dataIndex: 'completeTime',
},
{
title: '进度',
align: 'center',
dataIndex: 'progress',
},
{
title: '完成时间',
align: 'center',
dataIndex: 'upgradeTime',
},
{
title: '状态',
align: 'center',
dataIndex: 'state',
},
];
//查询数据
export const searchFormSchema: FormSchema[] = [
{
label: '设备名称',
field: 'deviceName',
component: 'Input',
},
];