2021-12-11 00:25:35 +01:00
|
|
|
<template>
|
2022-01-28 00:57:28 +01:00
|
|
|
<div class="bi-border-all">
|
2022-02-10 01:04:17 +01:00
|
|
|
<div class="q-ma-xs q-gutter-xs q-pa-xs">
|
2022-02-10 19:43:42 +01:00
|
|
|
|
2022-02-22 15:24:16 +01:00
|
|
|
<div v-if="showFilterPersonal"
|
|
|
|
|
class="text-center">
|
2022-02-15 13:37:33 +01:00
|
|
|
<q-btn-toggle
|
|
|
|
|
v-model="myrecfiltertoggle"
|
|
|
|
|
push
|
|
|
|
|
glossy
|
|
|
|
|
toggle-color="primary"
|
|
|
|
|
:options="[
|
|
|
|
|
{label: 'Tutti', value: tools.FILTER_ALL},
|
|
|
|
|
{label: 'Personali', value: tools.FILTER_MYREC},
|
2022-03-06 01:44:54 +01:00
|
|
|
// {label: 'Seguo', value: tools.FILTER_MYFOLLOW},
|
2022-02-15 13:37:33 +01:00
|
|
|
]"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2022-02-10 21:16:56 +01:00
|
|
|
<div v-if="false" class="q-mr-sm">
|
2022-02-10 19:43:42 +01:00
|
|
|
<q-input
|
|
|
|
|
v-model="search" filled dense type="search" debounce="500" :hint="t('finder.search_skill')"
|
|
|
|
|
v-on:keyup.enter="doSearch">
|
|
|
|
|
<template v-slot:after>
|
|
|
|
|
<q-btn dense label="" color="primary" @click="doSearch" icon="search"></q-btn>
|
|
|
|
|
</template>
|
|
|
|
|
</q-input>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-02-17 17:43:27 +01:00
|
|
|
|
2021-12-11 00:25:35 +01:00
|
|
|
<CGridTableRec
|
2021-12-16 10:56:57 +01:00
|
|
|
v-if="searchList.length > 0"
|
2022-02-17 00:44:52 +01:00
|
|
|
:prop_mytable="table"
|
2021-12-11 00:25:35 +01:00
|
|
|
prop_mytitle=""
|
2022-02-17 00:44:52 +01:00
|
|
|
:prop_mycolumns="col"
|
|
|
|
|
:prop_colkey="prop_colkey"
|
|
|
|
|
:col_title="col_title"
|
|
|
|
|
:col_footer="col_footer"
|
|
|
|
|
:col_tabfooter="col_tabfooter"
|
2022-02-14 15:38:23 +01:00
|
|
|
:vertical="costanti.VISUTABLE_LISTA"
|
2022-02-17 17:43:27 +01:00
|
|
|
:prop_pagination="mypagination"
|
2022-02-22 15:24:16 +01:00
|
|
|
:showType="showType"
|
|
|
|
|
:hint="hint"
|
|
|
|
|
:nodataLabel="noMsgRecord"
|
2021-12-11 00:25:35 +01:00
|
|
|
:prop_search="true"
|
|
|
|
|
:finder="true"
|
2022-02-22 15:24:16 +01:00
|
|
|
:choose_visutype="visuType"
|
2022-02-15 18:15:32 +01:00
|
|
|
:butt_modif_new="true"
|
2021-12-11 00:25:35 +01:00
|
|
|
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
|
|
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
|
|
|
|
:prop_searchList="searchList"
|
|
|
|
|
:defaultnewrec="getdefaultnewrec"
|
|
|
|
|
:extraparams="extraparams()">
|
|
|
|
|
|
|
|
|
|
</CGridTableRec>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CFinder.ts">
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './CFinder.scss';
|
|
|
|
|
</style>
|