- Tag HTML sugli annunci non vengono visualizzati correttamente... <div>...</div>
This commit is contained in:
@@ -75,6 +75,7 @@ export default defineComponent({
|
||||
const contact = ref(<IUserFields | null>null)
|
||||
|
||||
const filtroutente = ref(<any[]>[])
|
||||
const showBanner_utenti_verif = ref(true)
|
||||
|
||||
const usersList = ref({ show: false, title: '', list: [] })
|
||||
|
||||
@@ -199,7 +200,7 @@ export default defineComponent({
|
||||
])
|
||||
|
||||
const numindstep = computed(() => arrStep.value.length)
|
||||
|
||||
|
||||
|
||||
watch(() => indstep.value, (newval: number, oldval: number) => {
|
||||
if (indstep.value >= 0)
|
||||
@@ -582,6 +583,7 @@ export default defineComponent({
|
||||
numStepCompleted,
|
||||
globalStore,
|
||||
prStep,
|
||||
showBanner_utenti_verif,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -87,9 +87,13 @@
|
||||
:db_rec="contact"
|
||||
>
|
||||
</CMySelectCity>
|
||||
|
||||
|
||||
<CMySelectCity
|
||||
v-if="globalStore.isPresenteCardsByProv(contact.profile.resid_province)"
|
||||
v-if="
|
||||
globalStore.isPresenteCardsByProv(
|
||||
contact.profile.resid_province
|
||||
)
|
||||
"
|
||||
:label="$t('reg.resid_card')"
|
||||
table="users"
|
||||
jointable="cards"
|
||||
@@ -263,10 +267,10 @@
|
||||
|
||||
<q-banner
|
||||
inline-actions
|
||||
class="bg-blue text-white"
|
||||
v-if="userstoverify.length > 0"
|
||||
class="bg-blue text-white row"
|
||||
v-if="userstoverify.length > 0 && showBanner_utenti_verif"
|
||||
>
|
||||
<span v-html="$t('tutorial.utenti_da_verificare')"></span>
|
||||
<div v-html="$t('tutorial.utenti_da_verificare')"></div>
|
||||
<template v-slot:action>
|
||||
<q-btn
|
||||
:label="
|
||||
@@ -279,8 +283,14 @@
|
||||
usersList.show = true;
|
||||
usersList.title = $t('tutorial.utenti_da_verif_btn');
|
||||
"
|
||||
>
|
||||
</q-btn>
|
||||
/>
|
||||
<q-btn
|
||||
icon="fas fa-times"
|
||||
class="q-my-sm"
|
||||
flat
|
||||
@click="showBanner_utenti_verif = false"
|
||||
aria-label="Chiudi"
|
||||
/>
|
||||
</template>
|
||||
</q-banner>
|
||||
|
||||
@@ -288,8 +298,9 @@
|
||||
inline-actions
|
||||
class="bg-red text-white"
|
||||
v-if="
|
||||
userStore.my.profile.calc.numGoodsAndServices <= 0 && !nascondiavviso
|
||||
&& tools.visualizzaHomeApp()
|
||||
userStore.my.profile.calc.numGoodsAndServices <= 0 &&
|
||||
!nascondiavviso &&
|
||||
tools.visualizzaHomeApp()
|
||||
"
|
||||
>
|
||||
<span v-html="$t('tutorial.step_beniservizi')"></span>
|
||||
|
||||
Reference in New Issue
Block a user