Gestione Refresh Token Completata !
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { CMyCircuits } from '@/components/CMyCircuits'
|
||||
import { CCheckIfIsLogged } from '@components'
|
||||
import { CFinder } from '@/components/CFinder'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
import { CNotifAtTop } from '@/components/CNotifAtTop'
|
||||
@@ -15,7 +16,7 @@ import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'mycircuits',
|
||||
components: { CMyCircuits, CGridTableRec, CFinder, CNotifAtTop },
|
||||
components: { CMyCircuits, CGridTableRec, CFinder, CNotifAtTop, CCheckIfIsLogged },
|
||||
props: {},
|
||||
setup() {
|
||||
const userStore = useUserStore()
|
||||
|
||||
@@ -1,23 +1,20 @@
|
||||
<template>
|
||||
<div v-if="isfinishLoading" class="">
|
||||
<CNotifAtTop />
|
||||
<CMyCircuits
|
||||
v-model="filter"
|
||||
:finder="true"
|
||||
:showfinder="true"
|
||||
:showBarSelection="true"
|
||||
>
|
||||
|
||||
<CFinder
|
||||
:ind="tools.getIndMainCardsByTable(toolsext.TABCIRCUITS)"
|
||||
:table="toolsext.TABCIRCUITS"
|
||||
:noButtAdd="!tools.isManager()"
|
||||
:showFilterPersonal="true"
|
||||
:showBarSelection="true"
|
||||
/>
|
||||
|
||||
</CMyCircuits>
|
||||
|
||||
<div v-if="isfinishLoading" class>
|
||||
<div v-if="tools.isLogged()">
|
||||
<CNotifAtTop />
|
||||
<CMyCircuits v-model="filter" :finder="true" :showfinder="true" :showBarSelection="true">
|
||||
<CFinder
|
||||
:ind="tools.getIndMainCardsByTable(toolsext.TABCIRCUITS)"
|
||||
:table="toolsext.TABCIRCUITS"
|
||||
:noButtAdd="!tools.isManager()"
|
||||
:showFilterPersonal="true"
|
||||
:showBarSelection="true"
|
||||
/>
|
||||
</CMyCircuits>
|
||||
</div>
|
||||
<div v-else>
|
||||
<CCheckIfIsLogged></CCheckIfIsLogged>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -25,6 +22,6 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './mycircuits.scss';
|
||||
@import "./mycircuits.scss";
|
||||
</style>
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@ import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { CCheckIfIsLogged } from '@components'
|
||||
import { useI18n } from '@/boot/i18n'
|
||||
import { colmyUserGroup } from '@store/Modules/fieldsTable'
|
||||
import { costanti } from '@costanti'
|
||||
@@ -15,7 +16,7 @@ import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'mygroups',
|
||||
components: { CMyGroups, CGridTableRec, CNotifAtTop, CFinder },
|
||||
components: { CMyGroups, CGridTableRec, CNotifAtTop, CFinder, CCheckIfIsLogged },
|
||||
props: {},
|
||||
setup() {
|
||||
const userStore = useUserStore()
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
<template>
|
||||
<div class="q-my-sm">
|
||||
<CNotifAtTop />
|
||||
<!--<q-banner
|
||||
<div v-if="tools.isLogged()">
|
||||
<CNotifAtTop />
|
||||
<!--<q-banner
|
||||
rounded
|
||||
dense
|
||||
class="bg-warning text-white"
|
||||
@@ -12,20 +13,16 @@
|
||||
</template>
|
||||
<span class="mybanner">Questa sezione è ancora in fase di miglioramento.</span>
|
||||
|
||||
</q-banner>-->
|
||||
</q-banner>-->
|
||||
|
||||
<CMyGroups
|
||||
v-model="filter"
|
||||
:finder="true"
|
||||
>
|
||||
<CMyGroups v-model="filter" :finder="true">
|
||||
<CFinder
|
||||
:ind="tools.getIndMainCardsByTable(toolsext.TABMYGROUPS)"
|
||||
:table="toolsext.TABMYGROUPS"
|
||||
:showFilterPersonal="true"
|
||||
/>
|
||||
|
||||
<CFinder
|
||||
:ind="tools.getIndMainCardsByTable(toolsext.TABMYGROUPS)"
|
||||
:table="toolsext.TABMYGROUPS"
|
||||
:showFilterPersonal="true"
|
||||
/>
|
||||
|
||||
<!--
|
||||
<!--
|
||||
<CGridTableRec
|
||||
prop_mytable="mygroups"
|
||||
prop_mytitle=""
|
||||
@@ -51,11 +48,13 @@
|
||||
:extraparams="extraparams()">
|
||||
|
||||
</CGridTableRec>
|
||||
-->
|
||||
</CMyGroups>
|
||||
-->
|
||||
</CMyGroups>
|
||||
|
||||
<div v-if="filter === costanti.CREATE_GROUP">
|
||||
Nuovo Gruppo:
|
||||
<div v-if="filter === costanti.CREATE_GROUP">Nuovo Gruppo:</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
<CCheckIfIsLogged></CCheckIfIsLogged>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -64,6 +63,6 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './mygroups.scss';
|
||||
@import "./mygroups.scss";
|
||||
</style>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user