|
|
|
@ -26,19 +26,19 @@ export default function Page() {
|
|
|
|
|
return <span>{c + 1}</span>;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{ title: '设备名称', dataIndex: 'deviceName', key: 'deviceName', align: 'center' },
|
|
|
|
|
{ title: '管理实体标识', dataIndex: 'managerModelId', key: 'managerModelId', align: 'center' },
|
|
|
|
|
{ title: '310标识', dataIndex: 'deviceMarkId', key: 'deviceMarkId', align: 'center' },
|
|
|
|
|
{ title: 'IP地址', dataIndex: 'ip', key: 'ip', align: 'center' },
|
|
|
|
|
{ title: '密钥种类名称', dataIndex: 'keyTypeName', key: 'keyTypeName', align: 'center' },
|
|
|
|
|
{ title: '密钥类型', dataIndex: 'keyType', key: 'keyType', align: 'center' },
|
|
|
|
|
{ title: '使用区/备用区', dataIndex: 'usageReserveArea', key: 'usageReserveArea', align: 'center' },
|
|
|
|
|
{ title: '产品编号', dataIndex: 'productNum', key: 'productNum', align: 'center' },
|
|
|
|
|
{ title: '安装方式', dataIndex: 'installMethod', key: 'installMethod', align: 'center' },
|
|
|
|
|
{ title: '启用日期', dataIndex: 'activeDate', key: 'activeDate', align: 'center' },
|
|
|
|
|
{ title: '终止日期', dataIndex: 'enterDate', key: 'enterDate', align: 'center' },
|
|
|
|
|
{ title: '密钥套号', dataIndex: 'setNumber', key: 'setNumber', align: 'center' },
|
|
|
|
|
{ title: '协同管理标志', dataIndex: 'managementFlag', key: 'managementFlag', align: 'center' }
|
|
|
|
|
{ title: '设备名称', dataIndex: 'deviceName', key: 'deviceName', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '管理实体标识', dataIndex: 'managerModelId', key: 'managerModelId', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '310标识', dataIndex: 'deviceMarkId', key: 'deviceMarkId', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: 'IP地址', dataIndex: 'ip', key: 'ip', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '密钥种类名称', dataIndex: 'keyTypeName', key: 'keyTypeName', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '密钥类型', dataIndex: 'keyType', key: 'keyType', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '使用区/备用区', dataIndex: 'usageReserveArea', key: 'usageReserveArea', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '产品编号', dataIndex: 'productNum', key: 'productNum', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '安装方式', dataIndex: 'installMethod', key: 'installMethod', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '启用日期', dataIndex: 'activeDate', key: 'activeDate', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '终止日期', dataIndex: 'enterDate', key: 'enterDate', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '密钥套号', dataIndex: 'setNumber', key: 'setNumber', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '协同管理标志', dataIndex: 'managementFlag', key: 'managementFlag', align: 'center',render: (text: any) => text || '--' }
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
const columns1: any = [
|
|
|
|
@ -48,15 +48,15 @@ export default function Page() {
|
|
|
|
|
return <span>{c + 1}</span>;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{ title: '设备名称', dataIndex: 'deviceName', key: 'deviceName', align: 'center' },
|
|
|
|
|
{ title: '管理实体标识', dataIndex: 'deviceEntityId', key: 'deviceEntityId', align: 'center' },
|
|
|
|
|
{ title: '310标识', dataIndex: 'deviceMarkId', key: 'deviceMarkId', align: 'center' },
|
|
|
|
|
{ title: 'IP地址', dataIndex: 'ip', key: 'ip', align: 'center' },
|
|
|
|
|
{ title: '设备型号', dataIndex: 'deviceType', key: 'deviceType', align: 'center' },
|
|
|
|
|
{ title: '应用系统', dataIndex: 'name', key: 'name', align: 'center' },
|
|
|
|
|
{ title: '管理代理', dataIndex: 'name', key: 'name', align: 'center' },
|
|
|
|
|
{ title: '设备状态', dataIndex: 'name', key: 'name', align: 'center' },
|
|
|
|
|
{ title: '协同管理标志', dataIndex: 'name', key: 'name', align: 'center' }
|
|
|
|
|
{ title: '设备名称', dataIndex: 'deviceName', key: 'deviceName', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '管理实体标识', dataIndex: 'deviceEntityId', key: 'deviceEntityId', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '310标识', dataIndex: 'deviceMarkId', key: 'deviceMarkId', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: 'IP地址', dataIndex: 'ip', key: 'ip', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '设备型号', dataIndex: 'deviceType', key: 'deviceType', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '应用系统', dataIndex: 'name', key: 'name', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '管理代理', dataIndex: 'name', key: 'name', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '设备状态', dataIndex: 'name', key: 'name', align: 'center',render: (text: any) => text || '--' },
|
|
|
|
|
{ title: '协同管理标志', dataIndex: 'name', key: 'name', align: 'center',render: (text: any) => text || '--' }
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
const search = () => { }
|
|
|
|
|