uview-plus组件库全面升级更新,订单结算判断支付方式是否可用代码调整,公众号关注二维码修改

This commit is contained in:
2025-10-21 10:44:31 +08:00
parent 5d98b7efc2
commit 5f3a307fec
395 changed files with 31264 additions and 2477 deletions

View File

@@ -0,0 +1,89 @@
// @ts-nocheck
/**
* 节流函数,用于限制函数的调用频率
* @param fn 要进行节流的函数
* @param interval 两次调用之间的最小间隔时间
* @returns 节流后的函数
*/
export type ThrottleOptions = {
/**
* 是否在节流开始时立即执行
* @default true
*/
leading ?: boolean;
/**
* 是否在节流结束后执行最后一次调用
* @default true
*/
trailing ?: boolean;
}
/**
* 节流函数,限制函数在一定时间内只能执行一次
* @param func 需要节流的函数
* @param wait 节流间隔时间(毫秒)
* @param options 配置选项
* @param options.leading 是否在节流开始时立即执行(默认 true
* @param options.trailing 是否在节流结束时执行最后一次调用(默认 true
* @returns 返回节流后的函数
*/
// #ifndef APP-ANDROID
export function throttle<T extends (...args : any[]) => any>(
func : T,
wait : number,
options : ThrottleOptions = {}
) : (...args : Parameters<T>) => void {
let lastCallTime = 0;
let timerId : ReturnType<typeof setTimeout> | null = null;
const { leading = true, trailing = true } = options;
return function (...args : Parameters<T>) {
const now = Date.now();
const timeSinceLastCall = now - lastCallTime;
// 1. 如果 leading=true 且距离上次调用超过 wait立即执行
if (leading && timeSinceLastCall >= wait) {
lastCallTime = now;
func.apply(this, args);
}
// 2. 如果 trailing=true设置定时器在 wait 时间后执行最后一次调用
else if (trailing && !timerId) {
timerId = setTimeout(() => {
lastCallTime = Date.now();
func.apply(this, args);
timerId = null;
}, wait - timeSinceLastCall);
}
};
}
// #endif
// #ifdef APP-ANDROID
export function throttle<T extends any|null>(
func: (args : T) => void,
wait : number,
options : ThrottleOptions = {}
) : (args : T) => void {
let lastCallTime = 0;
let timerId = -1;
const { leading = true, trailing = true } = options;
return function (args : T) {
const now = Date.now();
const timeSinceLastCall = now - lastCallTime;
// 1. 如果 leading=true 且距离上次调用超过 wait立即执行
if (leading && timeSinceLastCall >= wait) {
lastCallTime = now;
func(args);
}
// 2. 如果 trailing=true设置定时器在 wait 时间后执行最后一次调用
else if (trailing && timerId > -1) {
timerId = setTimeout(() => {
lastCallTime = Date.now();
func(args);
timerId = -1;
}, wait - timeSinceLastCall);
}
};
}
// #endif