- sistemato "Pare che selezionando una condizione, non sempre viene aggiornato il record !"

- Aggiunto filtro "Escludi Editoriale"
This commit is contained in:
Surya Paolo
2025-06-04 15:46:29 +02:00
parent 12f816b738
commit 06fe6eb861
13 changed files with 209 additions and 29 deletions

View File

@@ -20,6 +20,7 @@ import { CImgTitle } from '@src/components/CImgTitle';
import { CImgPoster } from '@src/components/CImgPoster';
import { CTitle } from '@src/components/CTitle/index';
import { tools } from '@tools';
import { useRouter } from 'vue-router';
import { shared_consts } from '@src/common/shared_vuejs';
import { LandingFooter } from '@src/components/LandingFooter';
import { COpenStreetMap } from '@src/components/COpenStreetMap';
@@ -103,6 +104,7 @@ export default defineComponent({
setup(props, { emit }) {
const globalStore = useGlobalStore();
const catalogStore = useCatalogStore();
const router = useRouter();
const { setmeta, getsrcbyimg } = MixinMetaTags();
const { setValDb, getValDb } = MixinBase();
@@ -748,6 +750,14 @@ export default defineComponent({
}
}
function naviga(path: string) {
router.push(path);
}
function isElementoSpecifico() {
return myel.value.type === shared_consts.ELEMTYPE.CATALOGO;
}
onMounted(mounted);
return {
@@ -814,6 +824,8 @@ export default defineComponent({
importPage,
globalStore,
catalogStore,
naviga,
isElementoSpecifico,
};
},
});