This commit is contained in:
lcw
2025-12-05 21:36:34 +08:00
parent 64ab9fc44c
commit b39387c4ed
97 changed files with 3342 additions and 298 deletions

View File

@ -118,6 +118,10 @@ onMounted(() => {
emitter.on("handleClick", () => {
idEntityCard.value = getItem('idEntityCard')
handleClick()
// 清除旧定时器,避免多个定时器同时运行
if (intTime.value) {
clearInterval(intTime.value)
}
intTime.value = setInterval(() => {
handleClick()
}, 60000)