/* 节流函数封装 */ export const throttle = (fn, gapTime)=> { if (gapTime == null || gapTime == undefined) { gapTime = 1500 } let _lastTime = null // 返回新的函数 return function () { let _nowTime = +new Date() if (_nowTime - _lastTime > gapTime || !_lastTime) { fn.apply(this, arguments) //将this和参数传给原函数 _lastTime = _nowTime } } } /* 防抖函数封装 */ export const debounce = function(fn, interval) { let timer; let delay = interval || 1000; // 间隔的时间,如果interval不传,则默认1秒 return function() { let args = arguments; // 保存此处的arguments,因为setTimeout是全局的,arguments不是防抖函数需要的。 if (timer) { clearTimeout(timer); } timer = setTimeout(()=> { fn.apply(this, args); // 用apply指向调用debounce的对象,相当于this.fn(args); }, delay); }; } /* 用于处理按钮权限 */ export const hasPerm = perm=> { const btnPermList = JSON.parse(uni.getStorageSync('userBtnPerms')) || []; const hasExsit = perm ? btnPermList.includes(perm) : true; return hasExsit }