更新代码
This commit is contained in:
@ -91,15 +91,16 @@ const AccessManagement: React.FC = () => {
|
||||
width: 80,
|
||||
render: (_: any, __: any, idx: number) => (((pagination.current ?? 1) - 1) * (pagination.pageSize ?? 10)) + idx + 1,
|
||||
},
|
||||
{ title: '准入工作', ellipsis: true, dataIndex: 'accessWorkName' },
|
||||
{ title: '准入单位', ellipsis: true, dataIndex: 'deptId' },
|
||||
{ title: '准入部门', ellipsis: true, dataIndex: 'deptId' },
|
||||
{ title: '准入方式', ellipsis: true, dataIndex: 'accessTypeText' },
|
||||
{ title: '申请时间', ellipsis: true, dataIndex: 'createTime' },
|
||||
{ title: '状态', dataIndex: 'reviewStatusText' },
|
||||
{ title: '准入工作', ellipsis: true, width: 120, dataIndex: 'accessWorkName' },
|
||||
{ title: '准入单位', ellipsis: true, width: 120, dataIndex: 'deptId' },
|
||||
{ title: '准入部门', ellipsis: true, width: 120, dataIndex: 'deptId' },
|
||||
{ title: '准入方式', ellipsis: true, width: 120, dataIndex: 'accessTypeText' },
|
||||
{ title: '申请时间', ellipsis: true, width: 180, dataIndex: 'createTime' },
|
||||
{ title: '状态', dataIndex: 'reviewStatusText', width: 80, },
|
||||
{
|
||||
title: '操作',
|
||||
width: 200,
|
||||
fixed: 'right',
|
||||
render: (_: any, record: any) => (
|
||||
<Space>
|
||||
<a onClick={() => openModal('view', record)}>查看</a>
|
||||
|
Reference in New Issue
Block a user