2022-01-05 19:11:47 +01:00
|
|
|
<template>
|
2022-01-14 23:54:12 +01:00
|
|
|
<div class="">
|
|
|
|
|
<CMyFriends
|
|
|
|
|
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-05 23:28:01 +01:00
|
|
|
:vertical="-1"
|
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"
|
|
|
|
|
:options="shared_consts.OPTIONS_SEARCH_ONLY_FULL_WORDS"
|
|
|
|
|
:butt_modif_new="false"
|
|
|
|
|
noresultLabel="Username non trovato"
|
|
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
|
|
|
|
:prop_searchList="searchList"
|
|
|
|
|
:showType="costanti.SHOW_USERINFO"
|
|
|
|
|
keyMain=""
|
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>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./myfriends.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './myfriends.scss';
|
|
|
|
|
</style>
|
|
|
|
|
|