- Aggiunta possibilità di disattivare i link alle immagini dei libri. (opzione sul catalogo: disattiva_link_immagini)

This commit is contained in:
Surya Paolo
2025-07-18 10:43:08 +02:00
parent 43938023ee
commit f12341f780
9 changed files with 32 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ import { shared_consts } from '@src/common/shared_vuejs'
import { useRouter } from 'vue-router'
import { costanti } from '@costanti'
import type { IOptCatalogo, IMyScheda, IProduct } from '@src/model'
import type { IOptCatalogo, IMyScheda, IProduct, ICatalog } from '@src/model'
export default defineComponent({
@@ -33,6 +33,11 @@ export default defineComponent({
required: false,
default: null,
},
myCatalog: {
type: Object as PropType<ICatalog | null>,
required: false,
default: null,
},
cosa: {
type: Number,
required: false,

View File

@@ -10,6 +10,7 @@
@opendetail="opendetail"
v-model="optcatalogo"
:scheda="scheda"
:myCatalog="myCatalog"
>
</CCatalogoCard>
<q-dialog
@@ -38,6 +39,7 @@
@selauthor="selauthor"
@updateproductmodif="updateproductmodif"
:scheda="scheda"
:myCatalog="myCatalog"
>
</CCatalogoCard>
</div>