refactor: 调整批处理使用函数的调用间隔

- 将批处理使用函数的调用间隔从 500 毫秒修改为 200 毫秒
- 此修改旨在提高批处理的响应速度,减少等待时间
This commit is contained in:
2025-01-20 23:08:06 +08:00
parent 9ee5ee51bf
commit b04d49e9a3

View File

@@ -19566,7 +19566,7 @@ var app;
if (num > batchMax) {
batchUse(num);
}
}, 500);
}, 200);
})();
};
batchUse(e);