From 3c71a2be963a0d157930e0205296c091e4e744de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Wed, 13 Aug 2025 17:34:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B5=81=E9=87=8F=E6=B1=A0?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=9B=B8=E9=97=9C=E9=82=8F=E8=BC=AF=EF=BC=8C?= =?UTF-8?q?=E6=9B=BF=E6=8F=9B=E7=8D=B2=E5=AE=A2=E5=A0=B4=E6=99=AF=E5=92=8C?= =?UTF-8?q?=E5=8C=85=E9=81=B8=E9=A0=85=E7=9A=84=E7=8D=B2=E5=8F=96=E6=96=B9?= =?UTF-8?q?=E5=BC=8F=EF=BC=8C=E8=AA=BF=E6=95=B4=E7=AF=A9=E9=81=B8=E6=A2=9D?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E7=8B=80=E6=85=8B=E7=AE=A1=E7=90=86=EF=BC=8C?= =?UTF-8?q?=E4=B8=A6=E5=84=AA=E5=8C=96=E7=AF=A9=E9=81=B8=E6=A8=A1=E6=85=8B?= =?UTF-8?q?=E6=A1=86=E7=9A=84=E6=95=B8=E6=93=9A=E5=8A=A0=E8=BC=89=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mobile/mine/traffic-pool/list/index.tsx | 30 ++++++++----------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/Cunkebao/src/pages/mobile/mine/traffic-pool/list/index.tsx b/Cunkebao/src/pages/mobile/mine/traffic-pool/list/index.tsx index fe071f3e..a2a2edec 100644 --- a/Cunkebao/src/pages/mobile/mine/traffic-pool/list/index.tsx +++ b/Cunkebao/src/pages/mobile/mine/traffic-pool/list/index.tsx @@ -5,7 +5,7 @@ import { ReloadOutlined, BarChartOutlined, } from "@ant-design/icons"; -import { Input, Button, Checkbox } from "antd"; +import { Input, Button, Checkbox, Pagination } from "antd"; import styles from "./index.module.scss"; import { Empty, Avatar } from "antd-mobile"; import { useNavigate } from "react-router-dom"; @@ -136,6 +136,17 @@ const TrafficPoolList: React.FC = () => { } + footer={ +
+ +
+ } > {/* 批量加入分组弹窗 */} { )} - {/* 分页 */} - {total > pageSize && ( -
- - - {page} / {Math.ceil(total / pageSize)} - - -
- )} ); };