dev_1.0.1
tangjie 2026-07-07 11:39:02 +08:00
parent b60243f58e
commit 97883dbec3
4 changed files with 14 additions and 13 deletions

View File

@ -198,6 +198,7 @@ function EquipInfoPage(props) {
{ {
title: "操作", title: "操作",
width: 180, width: 180,
fixed: "right",
render: (_, record) => ( render: (_, record) => (
<TableAction> <TableAction>
<Button <Button
@ -240,7 +241,7 @@ function EquipInfoPage(props) {
}, },
]} ]}
dataSource={dataSource} dataSource={dataSource}
scroll={{ y: props.scrollY }} scroll={{ y: props.scrollY, x: 1600 }}
loading={loading} loading={loading}
pagination={{ pagination={{
total, total,

View File

@ -271,12 +271,12 @@ function PersonnelChangePage(props) {
</ControlWrapper.Select> </ControlWrapper.Select>
</Form.Item>, </Form.Item>,
]} ]}
onReset={() => { onReset={(value) => {
router.query = { ...router.query, current: 1, size: 10 }; router.query = { ...value, current: 1, size: 10 };
handleSearch(); handleSearch();
}} }}
onFinish={() => { onFinish={(value) => {
router.query = { ...router.query, current: 1, size: 10 }; router.query = { ...value, current: 1, size: 10 };
handleSearch(); handleSearch();
}} }}
/> />

View File

@ -151,12 +151,12 @@ function PersonnelInfoPage(props) {
</ControlWrapper.Select> </ControlWrapper.Select>
</Form.Item>, </Form.Item>,
]} ]}
onReset={() => { onReset={(value) => {
router.query = { ...router.query, current: 1, size: 10 }; router.query = { ...value, current: 1, size: 10 };
handleSearch(); handleSearch();
}} }}
onFinish={() => { onFinish={(value) => {
router.query = { ...router.query, current: 1, size: 10 }; router.query = { ...value, current: 1, size: 10 };
handleSearch(); handleSearch();
}} }}
/> />

View File

@ -127,12 +127,12 @@ function ResignationApplyPage(props) {
</ControlWrapper.Select> </ControlWrapper.Select>
</Form.Item>, </Form.Item>,
]} ]}
onReset={() => { onReset={(value) => {
router.query = { ...router.query, current: 1, size: 10 }; router.query = { ...value, current: 1, size: 10 };
handleSearch(); handleSearch();
}} }}
onFinish={() => { onFinish={(value) => {
router.query = { ...router.query, current: 1, size: 10 }; router.query = { ...value, current: 1, size: 10 };
handleSearch(); handleSearch();
}} }}
/> />