feat
parent
b60243f58e
commit
97883dbec3
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue