|
|
|
@ -147,6 +147,8 @@ const GlobalVarContainer = () => {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: '操作',
|
|
|
|
title: '操作',
|
|
|
|
dataIndex: 'operations',
|
|
|
|
dataIndex: 'operations',
|
|
|
|
|
|
|
|
fixed: 'right' as const,
|
|
|
|
|
|
|
|
width: 400,
|
|
|
|
render: (_, record, index) => (
|
|
|
|
render: (_, record, index) => (
|
|
|
|
<HandleButtonGroup
|
|
|
|
<HandleButtonGroup
|
|
|
|
row={record}
|
|
|
|
row={record}
|
|
|
|
@ -596,8 +598,13 @@ const GlobalVarContainer = () => {
|
|
|
|
data={componentData}
|
|
|
|
data={componentData}
|
|
|
|
loading={loading}
|
|
|
|
loading={loading}
|
|
|
|
pagination={false}
|
|
|
|
pagination={false}
|
|
|
|
|
|
|
|
scroll={{ x: 1500, y: 'calc(100vh - 280px)' }}
|
|
|
|
|
|
|
|
border={{
|
|
|
|
|
|
|
|
wrapper: true,
|
|
|
|
|
|
|
|
cell: true
|
|
|
|
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: 16 }}>
|
|
|
|
<div className={styles['pagination-container']}>
|
|
|
|
<Pagination
|
|
|
|
<Pagination
|
|
|
|
current={pagination.currPage}
|
|
|
|
current={pagination.currPage}
|
|
|
|
pageSize={pagination.pageSize}
|
|
|
|
pageSize={pagination.pageSize}
|
|
|
|
|