Aggiornamento APP RISO:

 Inviando i RIS, deve comparire prima il Circuito della Provincia, e poi quello Nazionale
 Risolto problema per vecchie registrazioni, la provincia compariva "undefined".
This commit is contained in:
Surya Paolo
2024-06-19 00:21:06 +02:00
parent 2d9c178c1f
commit 49d51712bd
155 changed files with 2510 additions and 5296 deletions

View File

View File

@@ -0,0 +1,39 @@
import {
defineComponent, ref, computed,
} from 'vue'
import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
import { CSkill } from '@/components/CSkill'
import { CFinder } from '@/components/CFinder'
import { CDashboard } from '@/components/CDashboard'
import { CTitlePage } from '@/components/CTitlePage'
import { CChartMap } from '@src/components/CChartMap'
import { CUserNonVerif } from '@/components/CUserNonVerif'
import { CNotifAtTop } from '@src/components/CNotifAtTop'
// import { CMapsEsempio } from '@src/components/CMapsEsempio'
import { CVerifyEmail } from '@src/components/CVerifyEmail'
import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
import { LandingFooter } from '@/components/LandingFooter'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { static_data } from '@/db/static_data'
import MixinBase from '@/mixins/mixin-base'
import MixinUsers from '@/mixins/mixin-users'
import { costanti } from '@costanti'
import { CCheckIfIsLogged } from '@components'
import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Activities',
components: { CSkill, CChartMap, CNotifAtTop, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter, CCheckIfIsLogged },
setup() {
return {
tools,
toolsext,
static_data,
shared_consts,
}
},
})

View File

@@ -0,0 +1,30 @@
<template>
<q-page class="">
<div v-if="tools.isLogged()">
<CNotifAtTop />
<div v-if="tools.isUserOk()">
<CFinder
:ind="tools.getIndMainCardsByTable(shared_consts.TABLES_ATTIVITAS)"
:table="shared_consts.TABLES_ATTIVITAS"
/>
</div>
<div v-else>
<CUserNonVerif></CUserNonVerif>
</div>
</div>
<div v-else>
<CCheckIfIsLogged></CCheckIfIsLogged>
</div>
</q-page>
</template>
<script lang="ts" src="./activities.ts">
</script>
<style lang="scss" scoped>
@import './activities.scss';
</style>

View File

@@ -19,6 +19,7 @@ import { useUserStore } from '@store/UserStore'
import { static_data } from '@/db/static_data'
import MixinBase from '@/mixins/mixin-base'
import MixinUsers from '@/mixins/mixin-users'
import { shared_consts } from '@/common/shared_vuejs'
import { colmyBachecas } from '@store/Modules/fieldsTable'
@@ -33,6 +34,7 @@ export default defineComponent({
tools,
toolsext,
static_data,
shared_consts,
}
},
})

View File

@@ -5,8 +5,8 @@
<div v-if="tools.isUserOk()">
<CFinder
:ind="tools.getIndMainCardsByTable(toolsext.TABMYBACHECAS)"
:table="toolsext.TABMYBACHECAS">
:ind="tools.getIndMainCardsByTable(shared_consts.TABLES_MYBACHECAS)"
:table="shared_consts.TABLES_MYBACHECAS">
</CFinder>

View File

@@ -23,6 +23,8 @@ import { static_data } from '@/db/static_data'
import MixinBase from '@/mixins/mixin-base'
import MixinUsers from '@/mixins/mixin-users'
import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Goods',
components: { CSkill, CChartMap, CFinder,
@@ -33,6 +35,7 @@ export default defineComponent({
tools,
toolsext,
static_data,
shared_consts,
}
},
})

View File

@@ -5,8 +5,8 @@
<div v-if="tools.isUserOk()">
<CFinder
:ind="tools.getIndMainCardsByTable(toolsext.TABMYGOODS)"
:table="toolsext.TABMYGOODS"
:ind="tools.getIndMainCardsByTable(shared_consts.TABLES_MYGOODS)"
:table="shared_consts.TABLES_MYGOODS"
/>
</div>
<div v-else>

View File

@@ -24,6 +24,8 @@ import MixinUsers from '@/mixins/mixin-users'
import { colmyHosp } from '@store/Modules/fieldsTable'
import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'hosp',
components: { CSkill, CChartMap, CMapsEsempio, CNotifAtTop, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter },
@@ -33,6 +35,7 @@ export default defineComponent({
tools,
toolsext,
static_data,
shared_consts,
}
},
})

View File

@@ -7,8 +7,8 @@
<div v-if="tools.isUserOk()">
<CFinder
:ind="tools.getIndMainCardsByTable(toolsext.TABMYHOSPS)"
:table="toolsext.TABMYHOSPS">
:ind="tools.getIndMainCardsByTable(shared_consts.TABLES_MYHOSPS)"
:table="shared_consts.TABLES_MYHOSPS">
</CFinder>

View File

@@ -6,7 +6,7 @@
<CFinder
:ind="1"
:table="toolsext.TABMYSKILLS"
:table="shared_consts.TABLES_MYSKILLS"
/>
Prova Pao:<br>

View File

@@ -4,7 +4,6 @@ import {
import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
import { CSkill } from '@/components/CSkill'
import { CFinder } from '@/components/CFinder'
import { CDashboard } from '@/components/CDashboard'
import { CTitlePage } from '@/components/CTitlePage'
@@ -23,14 +22,17 @@ import MixinUsers from '@/mixins/mixin-users'
import { costanti } from '@costanti'
import { CCheckIfIsLogged } from '@components'
import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Services',
components: { CSkill, CChartMap, CNotifAtTop, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter, CCheckIfIsLogged },
components: { CChartMap, CNotifAtTop, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter, CCheckIfIsLogged },
setup() {
return {
tools,
toolsext,
static_data,
shared_consts,
}
},
})

View File

@@ -6,8 +6,8 @@
<div v-if="tools.isUserOk()">
<CFinder
:ind="tools.getIndMainCardsByTable(toolsext.TABMYSKILLS)"
:table="toolsext.TABMYSKILLS"
:ind="tools.getIndMainCardsByTable(shared_consts.TABLES_MYSKILLS)"
:table="shared_consts.TABLES_MYSKILLS"
/>
<!--<CDashboard></CDashboard>-->