2022-01-05 19:11:47 +01:00
|
|
|
<template>
|
2022-01-14 23:54:12 +01:00
|
|
|
<div class="">
|
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-01-14 23:54:12 +01:00
|
|
|
<CMyFriends
|
2022-03-11 12:38:17 +01:00
|
|
|
v-if="searchList.length > 0"
|
2022-01-14 23:54:12 +01:00
|
|
|
v-model="filter"
|
|
|
|
|
:finder="true"
|
|
|
|
|
>
|
2022-01-12 00:38:31 +01:00
|
|
|
<CGridTableRec
|
|
|
|
|
prop_mytable="users"
|
|
|
|
|
prop_mytitle=""
|
|
|
|
|
:prop_mycolumns="colmyUserPeople"
|
|
|
|
|
prop_colkey="_id"
|
|
|
|
|
col_title="username"
|
2022-02-19 22:02:54 +01:00
|
|
|
:vertical="costanti.VISUTABLE_LISTA"
|
2022-01-12 00:38:31 +01:00
|
|
|
nodataLabel=" "
|
|
|
|
|
:prop_search="true"
|
|
|
|
|
hint="Username da trovare"
|
|
|
|
|
:finder="true"
|
2022-01-23 23:25:19 +01:00
|
|
|
:choose_visutype="true"
|
2022-01-12 00:38:31 +01:00
|
|
|
:finder_noNull="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"
|
|
|
|
|
noresultLabel="Username non trovato"
|
|
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
|
|
|
|
:showType="costanti.SHOW_USERINFO"
|
2022-01-14 23:54:12 +01:00
|
|
|
:showCol="false"
|
2022-01-12 00:38:31 +01:00
|
|
|
:extraparams="extraparams()">
|
2022-01-05 19:11:47 +01:00
|
|
|
|
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>
|
2022-03-11 12:38:17 +01:00
|
|
|
<!--:prop_searchList="searchList"-->
|
2022-01-05 19:11:47 +01:00
|
|
|
|
|
|
|
|
<script lang="ts" src="./myfriends.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './myfriends.scss';
|
|
|
|
|
</style>
|
|
|
|
|
|