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)} - - -
- )} ); };