diff --git a/pc4mobx/hrmSalary/pages/payrollFiles/index.js b/pc4mobx/hrmSalary/pages/payrollFiles/index.js index 0721f5d1..65c03aca 100644 --- a/pc4mobx/hrmSalary/pages/payrollFiles/index.js +++ b/pc4mobx/hrmSalary/pages/payrollFiles/index.js @@ -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 = () => {