ver: 1.1.21:
- Lista dei Cataloghi - Gestione Cataloghi in base alla configurazione
This commit is contained in:
@@ -66,6 +66,11 @@ export default defineComponent({
|
||||
type: Object as PropType<IOptCatalogo>,
|
||||
required: true,
|
||||
},
|
||||
idPage: {
|
||||
type: String,
|
||||
required: false,
|
||||
default: '',
|
||||
},
|
||||
scheda: {
|
||||
type: Object as PropType<IMyScheda>,
|
||||
required: false,
|
||||
@@ -152,14 +157,16 @@ export default defineComponent({
|
||||
return products.replaceKeyWordsByProduct(
|
||||
optcatalogo.value,
|
||||
myproduct.value!,
|
||||
props.scheda!.testo_right!
|
||||
props.scheda!.testo_right!,
|
||||
props.idPage,
|
||||
)
|
||||
})
|
||||
const getTesto_Right_attaccato = computed(() => {
|
||||
return products.replaceKeyWordsByProduct(
|
||||
optcatalogo.value,
|
||||
myproduct.value!,
|
||||
props.scheda!.testo_right_attaccato!
|
||||
props.scheda!.testo_right_attaccato!,
|
||||
props.idPage,
|
||||
)
|
||||
})
|
||||
const getTesto_Debug = computed(() => {
|
||||
@@ -167,6 +174,7 @@ export default defineComponent({
|
||||
optcatalogo.value,
|
||||
myproduct.value!,
|
||||
{ contenuto: '{debug}', maxlength: 10000 },
|
||||
props.idPage,
|
||||
)
|
||||
})
|
||||
|
||||
@@ -174,7 +182,8 @@ export default defineComponent({
|
||||
return products.replaceKeyWordsByProduct(
|
||||
optcatalogo.value,
|
||||
myproduct.value!,
|
||||
props.scheda!.testo_bottom!
|
||||
props.scheda!.testo_bottom!,
|
||||
props.idPage,
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user