Gestione Refresh Token Completata !
This commit is contained in:
@@ -10,6 +10,7 @@ import { LandingFooter } from '@/components/LandingFooter'
|
||||
import { CDashboard } from '@/components/CDashboard'
|
||||
import { CChartMap } from '@src/components/CChartMap'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { CCheckIfIsLogged } from '@components'
|
||||
import { CTitlePage } from '@/components/CTitlePage'
|
||||
import { CVerifyEmail } from '@src/components/CVerifyEmail'
|
||||
import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
|
||||
@@ -23,7 +24,9 @@ import { colmyBachecas } from '@store/Modules/fieldsTable'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'eventi',
|
||||
components: { CSkill, CChartMap, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter },
|
||||
components: { CSkill, CChartMap, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter,
|
||||
CCheckIfIsLogged
|
||||
},
|
||||
setup() {
|
||||
return {
|
||||
colmyBachecas,
|
||||
|
||||
@@ -16,6 +16,9 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div v-else>
|
||||
<CCheckIfIsLogged></CCheckIfIsLogged>
|
||||
</div>
|
||||
|
||||
|
||||
</q-page>
|
||||
|
||||
@@ -12,19 +12,21 @@ import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { CTitlePage } from '@/components/CTitlePage'
|
||||
// import { CMapsEsempio } from '@src/components/CMapsEsempio'
|
||||
import { CVerifyEmail } from '@src/components/CVerifyEmail'
|
||||
import { CCheckIfIsLogged } from '@components'
|
||||
import { CNotifAtTop } from '@src/components/CNotifAtTop'
|
||||
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'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Goods',
|
||||
components: { CSkill, CChartMap, CFinder,
|
||||
CNotifAtTop, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter },
|
||||
CNotifAtTop, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter, CCheckIfIsLogged },
|
||||
setup() {
|
||||
|
||||
return {
|
||||
|
||||
@@ -1,28 +1,25 @@
|
||||
<template>
|
||||
<q-page class="">
|
||||
|
||||
<q-page class>
|
||||
<div v-if="tools.isLogged()">
|
||||
<CNotifAtTop />
|
||||
|
||||
<div v-if="tools.isUserOk()">
|
||||
|
||||
<CFinder
|
||||
:ind="tools.getIndMainCardsByTable(toolsext.TABMYGOODS)"
|
||||
:table="toolsext.TABMYGOODS"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div v-else>
|
||||
<CUserNonVerif></CUserNonVerif>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div v-else>
|
||||
<CCheckIfIsLogged></CCheckIfIsLogged>
|
||||
</div>
|
||||
</q-page>
|
||||
|
||||
</template>
|
||||
<script lang="ts" src="./goods.ts">
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import './goods.scss';
|
||||
@import "./goods.scss";
|
||||
</style>
|
||||
|
||||
@@ -21,10 +21,11 @@ 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'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Services',
|
||||
components: { CSkill, CChartMap, CNotifAtTop, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter },
|
||||
components: { CSkill, CChartMap, CNotifAtTop, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, LandingFooter, CCheckIfIsLogged },
|
||||
setup() {
|
||||
return {
|
||||
tools,
|
||||
|
||||
@@ -18,6 +18,9 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div v-else>
|
||||
<CCheckIfIsLogged></CCheckIfIsLogged>
|
||||
</div>
|
||||
|
||||
</q-page>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user