@ -17,7 +17,7 @@ interface CompNodeProps {
const CompNode: React.FC<CompNodeProps> = ({ nodeData }) => {
return (
<div className={styles['comp-node-container']}>
<Card style={{ width: 450, margin: 10, border: '1px solid #dfe4ea' }}>
<Card style={{ width: '95%', margin: 10, border: '1px solid #dfe4ea' }}>
{/*节点渲染*/}
<div className={styles['comp-node-box']}>
{/*节点标题*/}
@ -72,7 +72,7 @@ const CompGrid: React.FC<CompGridProps> = ({ componentType }) => {
</Row>
<div className={styles['comp-grid-footer']}>
<Pagination
total={paginationData.totalCount + 200}
total={paginationData.totalCount}
onChange={(number) => {
setPaginationData({
...paginationData,