Aggiornamento APP RISO:
✅ Inviando i RIS, deve comparire prima il Circuito della Provincia, e poi quello Nazionale ✅ Risolto problema per vecchie registrazioni, la provincia compariva "undefined".
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
@click.stop="tools.copyToClip($q, getlinkpage(), true)"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<q-icon color="blue" name="fas fa-share" />
|
||||
<q-icon color="blue" name="fas fa-share" />
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
{{ $t('reaction.condividi') }}
|
||||
@@ -193,13 +193,7 @@
|
||||
@click.stop="tools.copyToClip($q, getlinkpage(), true)"
|
||||
>
|
||||
</q-btn>
|
||||
<q-btn
|
||||
flat
|
||||
round
|
||||
color="blue"
|
||||
icon="far fa-eye"
|
||||
style="z-index: 1"
|
||||
>
|
||||
<q-btn flat round color="blue" icon="far fa-eye" style="z-index: 1">
|
||||
<q-badge
|
||||
v-if="myrec"
|
||||
text-color="primary"
|
||||
@@ -292,7 +286,19 @@
|
||||
<q-separator />
|
||||
|
||||
<q-list style="z-index: 5">
|
||||
<q-item>
|
||||
<q-item v-if="myrec.tipodiAttivita">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="blue" name="fas fa-balance-scale" />
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<q-item-label class="text-bold text-h7">
|
||||
<q-chip dense color="green" text-color="white"
|
||||
>{{ getTipodiAttivita() }}
|
||||
</q-chip>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item v-if="myrec.adType">
|
||||
<q-item-section avatar>
|
||||
<div v-if="showBadge()" class="text-center">
|
||||
<q-chip
|
||||
@@ -305,17 +311,29 @@
|
||||
</q-chip>
|
||||
</div>
|
||||
</q-item-section>
|
||||
|
||||
</q-item>
|
||||
<q-item v-if="myrec.typeHosp">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="blue" name="fas fa-balance-scale" />
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<q-item-label v-if="myrec.typeHosp" class="text-bold text-h7">
|
||||
<q-item-label class="text-bold text-h7">
|
||||
<q-chip dense color="green" text-color="white"
|
||||
>{{ getTypeHosps() }}
|
||||
</q-chip>
|
||||
</q-item-label>
|
||||
|
||||
<q-item-label class="text-bold text-h7">{{
|
||||
myrec.descr
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item v-if="myrec.nome_attivita">
|
||||
<q-item-section>
|
||||
<q-item-label class="text-bold text-h7">
|
||||
{{ myrec.nome_attivita }}
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item v-if="myrec.descr">
|
||||
<q-item-section>
|
||||
<q-item-label class="text-h7">{{ myrec.descr }}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
@@ -489,7 +507,9 @@
|
||||
class="my-card clBorderUser"
|
||||
bordered
|
||||
@click="
|
||||
naviga(tools.getPathByGroup(myrec.mygrp, toolsext.TABMYGROUPS))
|
||||
naviga(
|
||||
tools.getPathByGroup(myrec.mygrp, shared_consts.TABLES_MYGROUPS)
|
||||
)
|
||||
"
|
||||
>
|
||||
<CMyGroup
|
||||
@@ -500,7 +520,10 @@
|
||||
</CMyGroup>
|
||||
</q-card>
|
||||
<q-card
|
||||
v-else-if="!myrec.organisedBy"
|
||||
v-else-if="
|
||||
!myrec.organisedBy &&
|
||||
shared_consts.TABLES_VISU_LISTA_USER.includes(table)
|
||||
"
|
||||
class="my-card clBorderUser"
|
||||
bordered
|
||||
>
|
||||
@@ -548,7 +571,13 @@
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item v-if="myrec.mycities && myrec.mycities.length > 0 && myrec.mycities[0].comune">
|
||||
<q-item
|
||||
v-if="
|
||||
myrec.mycities &&
|
||||
myrec.mycities.length > 0 &&
|
||||
myrec.mycities[0].comune
|
||||
"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<q-icon color="amber" name="fas fa-map-marker-alt" />
|
||||
</q-item-section>
|
||||
@@ -591,11 +620,61 @@
|
||||
<q-item-label lines="1">
|
||||
<span
|
||||
v-html="
|
||||
tools.getlinkhref(myrec.website, 'Visita il Sito Web')
|
||||
tools.getlinkhref(
|
||||
myrec.website,
|
||||
t('services.visit_website')
|
||||
)
|
||||
"
|
||||
/></q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item clickable v-if="myrec.email">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="blue-grey-6" name="fas fa-envelope" />
|
||||
</q-item-section>
|
||||
|
||||
<q-item-section>
|
||||
<q-item-label lines="1">
|
||||
<span
|
||||
v-html="tools.getlinkEmail(myrec.email, t('services.email'))"
|
||||
/></q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item v-if="myrec.telegram_username" clickable>
|
||||
<q-item-section avatar>
|
||||
<q-icon color="blue" name="telegram" />
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<a
|
||||
v-if="myrec.telegram_username"
|
||||
:href="tools.getHttpForTelegram(myrec.telegram_username)"
|
||||
target="_blank"
|
||||
>@{{ myrec.telegram_username }}</a
|
||||
>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item clickable v-if="myrec.whatsapp">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="green" name="fab fa-whatsapp" />
|
||||
</q-item-section>
|
||||
|
||||
<q-item-section>
|
||||
<q-item-label lines="1">
|
||||
{{ myrec.whatsapp }}
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item clickable v-if="myrec.cell_phone">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="green" name="fas fa-mobile-alt" />
|
||||
</q-item-section>
|
||||
|
||||
<q-item-section>
|
||||
<q-item-label lines="1">
|
||||
<span> {{ myrec.cell_phone }}: </span>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
clickable
|
||||
v-if="
|
||||
@@ -715,6 +794,12 @@
|
||||
}}</a></span
|
||||
></span
|
||||
>
|
||||
<span v-if="myrec.createdBy"
|
||||
><br />{{ $t('services.createdBy') }}
|
||||
<span class="text-bold"
|
||||
><a :href="'my/' + createdBy">{{ createdBy }}</a></span
|
||||
></span
|
||||
>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
|
||||
Reference in New Issue
Block a user