Browse Source

修改点击处理

lijuncheng0816
lijuncheng 1 month ago
parent
commit
a6c5e6eff5
  1. 22
      src/common/noclick.js

22
src/common/noclick.js

@ -23,17 +23,17 @@ function noMultipleClicks(methods, info) {
// 节流函数 // 节流函数
const throttle = (fn, t,_this) => { const throttle = (fn, t,_this) => {
console.log('throttle') console.log('throttle')
return ()=> { return ()=> {
if (!_this.timer) { if (!_this.timer) {
_this.timer = setTimeout(()=>{ _this.timer = setTimeout(()=>{
fn() console.log('fn')
console.log('fn') //·清空定时器
//·清空定时器 _this.timer = null
_this.timer = null }, t)
}, t) fn()
} }
} }
} }

Loading…
Cancel
Save