From c6bbf0a829ff60adb32a4b206dd5a7cd14efb622 Mon Sep 17 00:00:00 2001 From: wssam <573616439@qq.com> Date: Thu, 25 Apr 2024 09:15:50 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4console=E8=B0=83=E8=AF=95?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wssam <573616439@qq.com> --- tuniao-ui/libs/function/applyEven.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tuniao-ui/libs/function/applyEven.js b/tuniao-ui/libs/function/applyEven.js index 0176857..8a09049 100644 --- a/tuniao-ui/libs/function/applyEven.js +++ b/tuniao-ui/libs/function/applyEven.js @@ -20,7 +20,6 @@ export function throttleFun(func, delay=500) { timer = setTimeout(() => { //执行前清空 timer = null; - console.log("执行了") func.apply(this, args); }, delay); }