优化薪资档案

This commit is contained in:
黎永顺 2022-12-16 17:36:56 +08:00
parent 5b66b538b8
commit 0894f91765
1 changed files with 7 additions and 1 deletions

View File

@ -572,7 +572,13 @@ class Index extends Component {
current: 1,
pageSize: 10
}
}, () => this.query());
});
if (!this.handleChangeDebounce) {
this.handleChangeDebounce = _.debounce(() => {
this.query()
}, 500);
}
this.handleChangeDebounce();
};
//编辑保存
handleSave = () => {