2022-01-05 19:11:47 +01:00
|
|
|
<template>
|
2022-01-14 23:54:12 +01:00
|
|
|
<div class="">
|
2022-08-15 15:10:00 +02:00
|
|
|
<!--
|
2022-02-26 17:35:36 +01:00
|
|
|
<q-banner
|
|
|
|
|
rounded
|
|
|
|
|
dense
|
|
|
|
|
class="bg-warning text-white"
|
|
|
|
|
color="primary q-title"
|
|
|
|
|
style="text-align: center;">
|
|
|
|
|
<template v-slot:avatar>
|
|
|
|
|
<q-icon name="fas fa-exclamation-triangle" color="yellow" size="xs" />
|
|
|
|
|
</template>
|
|
|
|
|
<span class="mybanner">Questa sezione è ancora in fase di miglioramento.</span>
|
|
|
|
|
|
|
|
|
|
</q-banner>
|
2022-08-15 15:10:00 +02:00
|
|
|
-->
|
2023-03-22 22:45:00 +01:00
|
|
|
<CMyFriends v-if="searchList.length > 0" v-model="filter" :finder="true">
|
2022-01-12 00:38:31 +01:00
|
|
|
<CGridTableRec
|
|
|
|
|
prop_mytable="users"
|
|
|
|
|
prop_mytitle=""
|
2023-10-01 01:24:55 +02:00
|
|
|
subtitle="Seleziona una Regione o provincia per vedere la lista degli iscritti:"
|
2022-01-12 00:38:31 +01:00
|
|
|
:prop_mycolumns="colmyUserPeople"
|
|
|
|
|
prop_colkey="_id"
|
|
|
|
|
col_title="username"
|
2022-02-19 22:02:54 +01:00
|
|
|
:vertical="costanti.VISUTABLE_LISTA"
|
2023-10-01 01:24:55 +02:00
|
|
|
nodataLabel=" "
|
2022-01-12 00:38:31 +01:00
|
|
|
:prop_search="true"
|
2023-03-23 00:09:59 +01:00
|
|
|
:prop_showfilter="true"
|
2023-10-01 01:24:55 +02:00
|
|
|
hint="Scegli una Regione, Provincia oppure scrivi il nome o Username"
|
2022-01-12 00:38:31 +01:00
|
|
|
:finder="true"
|
2023-10-01 01:24:55 +02:00
|
|
|
:choose_visutype="false"
|
2023-03-23 00:09:59 +01:00
|
|
|
:finder_noNull="false"
|
2023-03-23 00:42:57 +01:00
|
|
|
:finder_noNullFilters="true"
|
2022-02-19 22:02:54 +01:00
|
|
|
:options="shared_consts.OPTIONS_SEARCH_USER_ALL_WORDS"
|
2022-01-12 00:38:31 +01:00
|
|
|
:butt_modif_new="false"
|
2023-10-01 01:24:55 +02:00
|
|
|
noresultLabel="Username, Nome o Cognome non trovato"
|
2022-01-12 00:38:31 +01:00
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
2023-03-21 18:12:06 +01:00
|
|
|
:prop_searchList="searchList"
|
2022-01-12 00:38:31 +01:00
|
|
|
:showType="costanti.SHOW_USERINFO"
|
2022-01-14 23:54:12 +01:00
|
|
|
:showCol="false"
|
2023-03-22 22:45:00 +01:00
|
|
|
:extraparams="extraparams()"
|
|
|
|
|
>
|
2022-01-12 00:38:31 +01:00
|
|
|
</CGridTableRec>
|
2022-01-14 23:54:12 +01:00
|
|
|
</CMyFriends>
|
2022-01-05 19:11:47 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./myfriends.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './myfriends.scss';
|
|
|
|
|
</style>
|
|
|
|
|
|