优化与接口调试
This commit is contained in:
@ -103,16 +103,18 @@ const blacklistManage: React.FC = () => {
|
||||
width: 60,
|
||||
render: (_: any, __: any, idx: number) => (((pagination.current ?? 1) - 1) * (pagination.pageSize ?? 10)) + idx + 1,
|
||||
},
|
||||
{ title: "申请主题", dataIndex: "themeName", key: "themeName", align: "left", ellipsis: true },
|
||||
{ title: "发起单位", dataIndex: "unitName", key: "unitName", align: "center" },
|
||||
{ title: "发起部门", dataIndex: "deptName", key: "deptName", align: "center" },
|
||||
{ title: "发起时间", dataIndex: "createTime", key: "createTime", align: "center", width: 180 },
|
||||
{ title: "审批记录状态", dataIndex: "approveStatusName", key: "approveStatusName", align: "center" },
|
||||
{ title: "申请主题", dataIndex: "themeName", key: "themeName", align: "center", width: 120, ellipsis: true },
|
||||
{ title: "发起单位", dataIndex: "unitName", key: "unitName", align: "center", width: 180, ellipsis: true },
|
||||
{ title: "发起部门", dataIndex: "deptName", key: "deptName", align: "center", width: 180, ellipsis: true },
|
||||
{ title: "发起时间", dataIndex: "createTime", key: "createTime", align: "center", width: 180 },
|
||||
{ title: "审批记录状态", dataIndex: "approveStatusName", key: "approveStatusName", align: "center", width: 180 },
|
||||
|
||||
{
|
||||
title: "操作",
|
||||
key: "option",
|
||||
align: "center",
|
||||
width: 180,
|
||||
fixed: 'right',
|
||||
render: (record: any) => {
|
||||
const showSubmit = record.approveStatus;
|
||||
const showRestoreSubmi = record.restoreApproveStatus;
|
||||
|
@ -97,15 +97,18 @@ const blacklistManage: React.FC = () => {
|
||||
width: 60,
|
||||
render: (_: any, __: any, idx: number) => (((pagination.current ?? 1) - 1) * (pagination.pageSize ?? 10)) + idx + 1,
|
||||
},
|
||||
{ title: "申请主题", dataIndex: "themeName", key: "themeName", align: "left", ellipsis: true },
|
||||
{ title: "发起单位", dataIndex: "unitName", key: "unitName", align: "center" },
|
||||
{ title: "发起部门", dataIndex: "deptName", key: "deptName", align: "center" },
|
||||
{ title: "发起时间", dataIndex: "createTime", key: "createTime", align: "center", width: 180 },
|
||||
{ title: "审批记录状态", dataIndex: "approveStatusName", key: "approveStatusName", align: "center" },
|
||||
{ title: "申请主题", dataIndex: "themeName", key: "themeName", align: "center", width: 120, ellipsis: true },
|
||||
{ title: "发起单位", dataIndex: "unitName", key: "unitName", align: "center", width: 180, ellipsis: true },
|
||||
{ title: "发起部门", dataIndex: "deptName", key: "deptName", align: "center", width: 180, ellipsis: true },
|
||||
{ title: "发起时间", dataIndex: "createTime", key: "createTime", align: "center", width: 180 },
|
||||
{ title: "审批记录状态", dataIndex: "approveStatusName", key: "approveStatusName", align: "center", width: 180 },
|
||||
|
||||
{
|
||||
title: "操作",
|
||||
key: "option",
|
||||
align: "center",
|
||||
width: 100,
|
||||
fixed: 'right',
|
||||
render: (record: any) => (
|
||||
<a
|
||||
onClick={() => {
|
||||
|
Reference in New Issue
Block a user