From 4f38240e2fd66324ebf9d7dc69b00a363d4c8c4a Mon Sep 17 00:00:00 2001
From: chengxiangling <291105840@qq.com>
Date: 星期三, 14 五月 2025 16:20:03 +0800
Subject: [PATCH] 提交调整列宽,日历对接等

---
 src/utils/throttle.js |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/utils/throttle.js b/src/utils/throttle.js
index 530320a..17ced74 100644
--- a/src/utils/throttle.js
+++ b/src/utils/throttle.js
@@ -1,9 +1,7 @@
 export function throttle(func, delay) {
     let lastTime = 0;
-    
     return function(...args) {
       const now = Date.now();
-      
       if (now - lastTime >= delay) {
         func.apply(this, args);
         lastTime = now;

--
Gitblit v1.9.3