update pay function

This commit is contained in:
2025-11-29 14:07:55 +08:00
parent 1676d69917
commit d14be2081d
5 changed files with 68 additions and 38 deletions

View File

@@ -683,15 +683,6 @@ const [currentMode, setCurrentMode] = useState('vertical');
</ModalContent>
</Modal>
)}
{/* 右侧分页控制器仅在纵向模式显示H5 放不下时折行 */}
{mode === 'vertical' && totalPages > 1 && (
<PaginationControl
currentPage={currentPage}
totalPages={totalPages}
onPageChange={handlePageChangeWithScroll}
/>
)}
</Card>
);
});