- corretto logica del RefreshToken che non richiedeva il nuovo token, quindi scadeva tutte le volte, richiedendo sempre l'accesso !
32 lines
815 B
Vue
Executable File
32 lines
815 B
Vue
Executable File
<template>
|
|
<CMyPage title="Collane" imgbackground="images/produttori.jpg" sizes="max-height: 120px">
|
|
<span>{{
|
|
setmeta({
|
|
title: 'Collane',
|
|
description: '',
|
|
keywords: '',
|
|
})
|
|
}}
|
|
</span>
|
|
|
|
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
|
<CTitleBanner title="Collane"></CTitleBanner>
|
|
<CGridTableRec
|
|
prop_mytable="collanas"
|
|
prop_mytitle="Collane"
|
|
:prop_mycolumns="colTableCollane"
|
|
prop_colkey="name"
|
|
nodataLabel="Nessuna Collana"
|
|
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
|
|
|
</CGridTableRec>
|
|
</div>
|
|
</CMyPage>
|
|
</template>
|
|
<script lang="ts" src="./collane.ts">
|
|
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import 'collane.scss';
|
|
</style>
|