diff --git a/pc4mobx/hrmSalary/pages/payrollFiles/index.js b/pc4mobx/hrmSalary/pages/payrollFiles/index.js index f19d2d61..48acd3e7 100644 --- a/pc4mobx/hrmSalary/pages/payrollFiles/index.js +++ b/pc4mobx/hrmSalary/pages/payrollFiles/index.js @@ -611,7 +611,13 @@ class Index extends Component { current: 1, pageSize: 10 } - }, () => this.query()); + }); + if (!this.handleChangeDebounce) { + this.handleChangeDebounce = _.debounce(() => { + this.query() + }, 500); + } + this.handleChangeDebounce(); }; //编辑保存 handleSave = () => {