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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user