仪表盘
版本库
文件存储
活动
搜索
登录
董宇坤
/
iailab-plat-ui-vue3
分支自
iailab-plat-ui-vue3
概况
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
修改保存的id和修改展示页面
Jay
2024-10-16
67e80dd003afb30ab67ac8c4e63bee4abb34bb7a
[~dongyukun/iailab-plat-ui-vue3.git]
/
src
/
components
/
bpmnProcessDesigner
/
src
/
utils
/
index.js
1
2
3
4
5
6
7
8
9
10
export function debounce(fn, delay = 500) {
let timer
return function (...args) {
if (timer) {
clearTimeout(timer)
timer = null
}
timer = setTimeout(fn.bind(this, ...args), delay)
}
}