From 8f1ff5970d39770402c17689a3d7928aa0768ebb Mon Sep 17 00:00:00 2001 From: xiong Date: Wed, 22 Jul 2026 09:43:54 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E5=AD=A6?= =?UTF-8?q?=E7=94=9F=E4=BD=99=E9=A2=9D=E9=A1=B5=E9=9D=A2=E7=9A=84=E5=88=86?= =?UTF-8?q?=E9=A1=B5=E8=AE=BE=E7=BD=AE=EF=BC=8C=E5=A2=9E=E5=8A=A0=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=A4=A7=E5=B0=8F=E9=80=89=E6=8B=A9=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/admin/src/pages/Wallets/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/admin/src/pages/Wallets/index.tsx b/apps/admin/src/pages/Wallets/index.tsx index 6157ea8..c92d614 100644 --- a/apps/admin/src/pages/Wallets/index.tsx +++ b/apps/admin/src/pages/Wallets/index.tsx @@ -273,7 +273,12 @@ const WalletsPage: React.FC = () => { dataSource={rows} columns={columns} rowSelection={{ selectedRowKeys, onChange: setSelectedRowKeys }} - pagination={{ pageSize: 15, showTotal: (total) => `共 ${total} 人` }} + pagination={{ + defaultPageSize: 15, + showSizeChanger: true, + pageSizeOptions: [15, 30, 50, 100], + showTotal: (total) => `共 ${total} 人`, + }} /> Date: Wed, 22 Jul 2026 09:49:12 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20CI=20=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=B5=81=EF=BC=8C=E6=B7=BB=E5=8A=A0=20checkout=20?= =?UTF-8?q?=E6=AD=A5=E9=AA=A4=E7=9A=84=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 43537d8..59157b1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,6 +23,9 @@ jobs: steps: - name: Checkout uses: https://gitee.com/mirrors_actions/checkout@v4 + with: + github-server-url: https://git.gongxue100.com + fetch-depth: 1 - name: Install dependencies run: npm ci