修复学生余额多选充值一次性最高只能选15个 #33
@@ -23,6 +23,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: https://gitee.com/mirrors_actions/checkout@v4
|
uses: https://gitee.com/mirrors_actions/checkout@v4
|
||||||
|
with:
|
||||||
|
github-server-url: https://git.gongxue100.com
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|||||||
@@ -273,7 +273,12 @@ const WalletsPage: React.FC = () => {
|
|||||||
dataSource={rows}
|
dataSource={rows}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
rowSelection={{ selectedRowKeys, onChange: setSelectedRowKeys }}
|
rowSelection={{ selectedRowKeys, onChange: setSelectedRowKeys }}
|
||||||
pagination={{ pageSize: 15, showTotal: (total) => `共 ${total} 人` }}
|
pagination={{
|
||||||
|
defaultPageSize: 15,
|
||||||
|
showSizeChanger: true,
|
||||||
|
pageSizeOptions: [15, 30, 50, 100],
|
||||||
|
showTotal: (total) => `共 ${total} 人`,
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<Modal
|
<Modal
|
||||||
title={`${selected?.studentName || ''} - 余额操作`}
|
title={`${selected?.studentName || ''} - 余额操作`}
|
||||||
|
|||||||
Reference in New Issue
Block a user