1 2 3 4 5 6 7 8 9 10 11 12 13 14
| async queryUserByChunk(search) { clearTimeout(this.timeout) let param = { corporationNo: localStorage.getItem("orgAcct"), searchParam: search }; this.timeout = setTimeout(() => { findUserByUsernameOrRealNameOrJobNo(param) .then(res => { }) .catch(error => {}); }, 300); }
|