- ok
This commit is contained in:
@@ -371,7 +371,8 @@
|
||||
</q-item>
|
||||
<q-item v-if="myrec.descr">
|
||||
<q-item-section>
|
||||
<q-item-label class="text-h7">{{ myrec.descr }}</q-item-label>
|
||||
<q-item-label v-if="table === shared_consts.TABLES_MYBACHECAS" class="text-h6 text-bold">{{ myrec.descr }}</q-item-label>
|
||||
<q-item-label v-else class="text-h7">{{ myrec.descr }}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
@@ -536,6 +537,36 @@
|
||||
></div
|
||||
></q-item-label>
|
||||
|
||||
<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>
|
||||
<q-item-section>
|
||||
<q-item-label>
|
||||
<div v-if="myrec.address">
|
||||
{{ myrec.address }}
|
||||
</div>
|
||||
<span
|
||||
v-for="(city, index) in myrec.mycities"
|
||||
:key="index"
|
||||
>
|
||||
<span v-if="city.comune">
|
||||
{{ city.comune }} ({{ city.prov }})</span
|
||||
><span v-if="myrec.mycities.length > 1"> - </span>
|
||||
</span>
|
||||
</q-item-label>
|
||||
<q-item-label v-if="myrec.profile.qualifica" caption>{{
|
||||
myrec.biografia
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
|
||||
<q-item clickable v-if="table === 'mybachecas'">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="green" name="fas fa-house-user" />
|
||||
@@ -598,23 +629,20 @@
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
clickable
|
||||
v-if="table === 'mybachecas' && myrec.contact_email"
|
||||
>
|
||||
<q-item clickable v-if="myrec.contact_email">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="blue" name="fas fa-mail-bulk" />
|
||||
</q-item-section>
|
||||
|
||||
<q-item-section>
|
||||
<q-item-label lines="1">
|
||||
<CLabel
|
||||
v-bind="$attrs"
|
||||
:copy="true"
|
||||
:value="myrec.contact_email"
|
||||
:label="$t('event.contact_email')"
|
||||
/>
|
||||
</q-item-label>
|
||||
{{$t('event.contact_email')}}:
|
||||
<span
|
||||
v-html="
|
||||
tools.getlinkEmailTo(
|
||||
myrec.contact_email)
|
||||
"
|
||||
/></q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
@@ -627,45 +655,17 @@
|
||||
|
||||
<q-item-section>
|
||||
<q-item-label lines="1">
|
||||
{{ $t('msgs.telegrammsg') }}:
|
||||
<a
|
||||
:href="tools.getHttpForTelegram(myrec.contact_telegram)"
|
||||
target="_blank"
|
||||
>{{ $t('msgs.telegrammsg') }}: @{{
|
||||
>@{{
|
||||
myrec.contact_telegram
|
||||
}}
|
||||
</a>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<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>
|
||||
<q-item-section>
|
||||
<q-item-label>
|
||||
<div v-if="myrec.address">
|
||||
{{ myrec.address }}
|
||||
</div>
|
||||
<span
|
||||
v-for="(city, index) in myrec.mycities"
|
||||
:key="index"
|
||||
>
|
||||
<span v-if="city.comune">
|
||||
{{ city.comune }} ({{ city.prov }})</span
|
||||
><span v-if="myrec.mycities.length > 1"> - </span>
|
||||
</span>
|
||||
</q-item-label>
|
||||
<q-item-label v-if="myrec.profile.qualifica" caption>{{
|
||||
myrec.biografia
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
clickable
|
||||
v-if="
|
||||
|
||||
Reference in New Issue
Block a user