util.js 1.2 KB
Newer Older
宋雄's avatar
宋雄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/* 节流函数封装 */
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
}