Aggio App
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -86,6 +86,10 @@ export default defineComponent({
|
||||
//$router.push(link)
|
||||
}
|
||||
|
||||
function getNameToShow(user: IUserFields) {
|
||||
return userStore.getNameToShow(user)
|
||||
}
|
||||
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
@@ -105,6 +109,7 @@ export default defineComponent({
|
||||
cmdExt,
|
||||
visupage,
|
||||
showBadge,
|
||||
getNameToShow,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -35,7 +35,6 @@
|
||||
|
||||
<q-item-section @click="navigaExt(myrec)">
|
||||
<q-item-label lines="1" class="full-width" >
|
||||
|
||||
<span v-for="(rec, ind) of tools.getArrSubSector(table, myrec)" :key="ind">
|
||||
<q-chip dense class="text-center shadow-5 glossy text-white bg-green">{{ rec.descr }}</q-chip>
|
||||
</span>
|
||||
@@ -51,7 +50,7 @@
|
||||
<q-item-label lines="4" v-if="myrec.descr">{{ myrec.descr }}<br>
|
||||
</q-item-label>
|
||||
<q-item-label lines="1" style="text-align: right" class="text_user_city">
|
||||
<span class="text-weight-bold">{{ myrec.username }}</span> -
|
||||
<span class="text-weight-bold">{{ getNameToShow(myrec) }}</span> -
|
||||
<span v-for="(rec, ind) of myrec.mycities" :key="ind"><span v-if="ind > 0">, </span>{{ rec.comune }} ({{ rec.prov }})</span>
|
||||
</q-item-label>
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
<q-icon name="fas fa-lock"></q-icon></span>
|
||||
<span v-if="myrec.visibility.includes(shared_consts.Visibility_Group.HIDDEN)" class="q-mr-xs">
|
||||
<q-icon name="fas fa-eye-slash"></q-icon></span>
|
||||
<span class="text-weight-bold">{{ myrec.username }}</span> -
|
||||
<span class="text-weight-bold">{{ getNameToShow(myrec) }}</span> -
|
||||
<span v-for="(rec, ind) of myrec.mycities" :key="ind"><span v-if="ind > 0">, </span>{{ rec.comune }}</span>
|
||||
</q-item-label>
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
outline
|
||||
icon="fas fa-envelope"
|
||||
size="md"
|
||||
color="black"
|
||||
text-color="white"
|
||||
:color="$q.dark.isActive ? `black` : `white`"
|
||||
:text-color="$q.dark.isActive ? `white` : `black`"
|
||||
to="/signup"
|
||||
:label="$t('reg.byemail')"
|
||||
>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<template>
|
||||
ù<template>
|
||||
<div>
|
||||
<div class="q-my-sm q-gutter-xs q-py-xs">
|
||||
<CGridTableRec
|
||||
|
||||
Reference in New Issue
Block a user