mirror of
https://github.com/earthjasonlin/zzz-signal-search-export.git
synced 2025-04-21 07:50:19 +08:00
fix: the button can be clicked at intervals changed to 10s
This commit is contained in:
@ -145,7 +145,7 @@ const uidSelectText = computed(() => {
|
|||||||
const allowClick = () => {
|
const allowClick = () => {
|
||||||
const data = state.dataMap.get(state.current)
|
const data = state.dataMap.get(state.current)
|
||||||
if (!data) return true
|
if (!data) return true
|
||||||
if (Date.now() - data.time < 1000 * 60) {
|
if (Date.now() - data.time < 1000 * 10) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
Reference in New Issue
Block a user