// 注册
function debounce(fn, wait = 300) {
// 防抖
return (() => {
if (timer != null) {
clearTimeout(timer);
}
timer = setTimeout(fn, wait);
})()
}
// 调用
debounce(() => {
setVodHTML(area2.curDomIndex)
}, 600)