- risolto problema della non attesa della PWA durante la chiamata a Node.js.

- risolto problema dell'ambiente in Locale HTTPS certificato installato aggiornato.
This commit is contained in:
Surya Paolo
2025-03-13 12:05:10 +01:00
parent 09d738f4e9
commit 404194b873
14 changed files with 379 additions and 573 deletions

View File

@@ -38,13 +38,13 @@ export default defineComponent({
const globalStore = useGlobalStore()
const userStore = useUserStore()
const NUMSEC_TO_POLLING = ref(60)
// const NUMSEC_TO_POLLING = ref(60)
const MAXNUM_POLLING = ref(1000)
const myloadingload = ref(false)
const eseguipolling = ref(false)
const polling = ref(<any>null)
const numpolled = ref(0)
// const numpolled = ref(0)
const mytab = ref('reg')
@@ -127,7 +127,8 @@ export default defineComponent({
if (eseguipolling.value) {
beforeDestroy()
if (numpolled.value > 200) {
/*if (numpolled.value > 200) {
NUMSEC_TO_POLLING.value = 60 * 5
}
if (numpolled.value < MAXNUM_POLLING.value) {
@@ -137,7 +138,7 @@ export default defineComponent({
numpolled.value++
}, NUMSEC_TO_POLLING.value * 1000)
}
}
}*/
}
}