From 496fed06679f58a719b428753a0aba92216b2759 Mon Sep 17 00:00:00 2001 From: caohengxing <01120126@wisedu.com> Date: Thu, 27 Aug 2020 16:04:52 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E5=B7=A5=E5=85=B7=E5=BA=93=E9=98=B2?= =?UTF-8?q?=E6=8A=96=E5=87=BD=E6=95=B0=20=E6=97=A0=E6=B3=95=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E8=8E=B7=E5=8F=96=E4=BC=A0=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/index.js b/src/utils/index.js index 3225d3c4..15bd61d4 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -271,7 +271,8 @@ export function debounce(func, wait, immediate) { } } - return function(...args) { + return function(...args1) { + args = args1 context = this timestamp = +new Date() const callNow = immediate && !timeout