- fix RIS in pendenti, se troppi msg, non compariva piu

- cataloghi, ricerca pickup
This commit is contained in:
Surya Paolo
2024-05-09 23:36:58 +02:00
parent 58f53f8c52
commit faf0fabfb0
68 changed files with 1776 additions and 188 deletions

View File

@@ -28,6 +28,7 @@ import 'vue3-pdf-app/dist/icons/main.css'
export default defineComponent({
name: 'CCatalogoCard',
emits: ['selauthor'],
props: {
product: {
type: Object as PropType<IProduct | null>,
@@ -472,6 +473,10 @@ export default defineComponent({
}
}
function click_author(id: any, autore: any) {
emit('selauthor', id, autore)
}
onMounted(mounted)
onBeforeUnmount(beforeDestroy)
@@ -525,6 +530,7 @@ export default defineComponent({
setvariazioneSelected,
indvariazSel,
checkifCartEnable,
click_author,
}
}
})