- Gruppi (2)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
<div class="">
|
||||
<q-avatar size="140px">
|
||||
<q-img :src="getImgGrp()" :alt="username" img-class="imgprofile" height="140px" @click="showPic = true"/>
|
||||
<q-img :src="getImgGrp()" :alt="mygrpname()" img-class="imgprofile" height="140px" @click="showPic = true"/>
|
||||
</q-avatar>
|
||||
</div>
|
||||
|
||||
@@ -36,6 +36,10 @@
|
||||
|
||||
<div v-if="mygrp.title">
|
||||
<br>
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<div v-if="mygrp.note" v-html="mygrp.note">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<q-btn
|
||||
|
||||
@@ -31,6 +31,46 @@ export default defineComponent({
|
||||
filtercustom.value = []
|
||||
arrfilterand.value = []
|
||||
|
||||
searchList.value = [
|
||||
{
|
||||
label: 'Categorie',
|
||||
table: 'catgrps',
|
||||
key: 'idCatGrp',
|
||||
value: tools.getCookie(tools.COOK_SEARCH + 'catgrps', costanti.FILTER_TUTTI),
|
||||
arrvalue: [],
|
||||
type: costanti.FieldType.select,
|
||||
filter: null,
|
||||
addall: true,
|
||||
useinput: false,
|
||||
},
|
||||
{
|
||||
label: 'Provincia',
|
||||
table: 'provinces',
|
||||
key: 'idProvince',
|
||||
type: costanti.FieldType.multiselect,
|
||||
value: 0,
|
||||
addall: true,
|
||||
arrvalue: tools.getCookie(tools.COOK_SEARCH + 'provinces', [costanti.FILTER_TUTTI]),
|
||||
filter: null,
|
||||
useinput: true,
|
||||
icon: 'flag',
|
||||
},
|
||||
{
|
||||
label: 'Città',
|
||||
table: 'cities',
|
||||
key: 'idCity',
|
||||
type: costanti.FieldType.multiselect_by_server,
|
||||
value: 0,
|
||||
addall: true,
|
||||
arrvalue: tools.getCookie(tools.COOK_SEARCH + 'cities', [costanti.FILTER_TUTTI]),
|
||||
useinput: true,
|
||||
filter: null,
|
||||
// filter: getFilterCitiesByProvince,
|
||||
// param1: shared_consts.PARAM_SHOW_PROVINCE,
|
||||
tablesel: 'cities',
|
||||
},
|
||||
]
|
||||
|
||||
const filt_loaded = tools.getCookie(tools.COOK_SEARCH + tools.GROUP_SEARCH)
|
||||
filter.value = filt_loaded ? filt_loaded : costanti.FIND_GROUP
|
||||
}
|
||||
@@ -61,10 +101,13 @@ export default defineComponent({
|
||||
img: 1,
|
||||
visibility: 1,
|
||||
admins: 1,
|
||||
idSector: 1,
|
||||
idCatGrp: 1,
|
||||
photos: 1,
|
||||
idCity: 1,
|
||||
note: 1,
|
||||
comune: 1,
|
||||
mycities: 1,
|
||||
sector: 1,
|
||||
}
|
||||
},
|
||||
lookup2: {
|
||||
@@ -77,14 +120,17 @@ export default defineComponent({
|
||||
title: 1,
|
||||
descr: 1,
|
||||
img: 1,
|
||||
idSector: 1,
|
||||
idCatGrp: 1,
|
||||
visibility: 1,
|
||||
admins: 1,
|
||||
photos: 1,
|
||||
idCity: 1,
|
||||
note: 1,
|
||||
comune: 1,
|
||||
mycities: 1,
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<CMyPage
|
||||
:title='myskill.subTitle' imgbackground="images/calendario_eventi.jpg"
|
||||
sizes="max-height: 100px" styleadd="bottom: -16px !important;">
|
||||
sizes="max-height: 120px" styleadd="bottom: -20px !important;">
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<div v-if="!!myskill.note" v-html="myskill.note"></div>
|
||||
@@ -22,6 +22,7 @@
|
||||
</CSkill>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="row justify-evenly q-mt-md">
|
||||
<q-btn
|
||||
type="a" rounded size="md"
|
||||
@@ -32,6 +33,7 @@
|
||||
</q-btn>
|
||||
|
||||
</div>
|
||||
-->
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
</div>
|
||||
|
||||
<div v-if="myuser.name">
|
||||
<div class="col-12 text-h8 q-mt-sm">
|
||||
<div class="col-12 text-h8 q-mt-sm" v-if="myuser.profile.qualifica">
|
||||
<em><span class="qualifica">{{ myuser.profile.qualifica }}</span></em>
|
||||
</div>
|
||||
<div class="col-12 text-h8 q-mt-sm">
|
||||
|
||||
Reference in New Issue
Block a user