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-15 13:37:33 +01:00
|
|
|
<div class="text-center">
|
|
|
|
|
<q-btn-toggle
|
|
|
|
|
v-model="myrecfiltertoggle"
|
|
|
|
|
push
|
|
|
|
|
glossy
|
|
|
|
|
toggle-color="primary"
|
|
|
|
|
:options="[
|
|
|
|
|
{label: 'Tutti', value: tools.FILTER_ALL},
|
|
|
|
|
{label: 'Personali', value: tools.FILTER_MYREC},
|
|
|
|
|
]"
|
|
|
|
|
/>
|
|
|
|
|
</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>
|
|
|
|
|
|
2021-12-11 00:25:35 +01:00
|
|
|
<CGridTableRec
|
2021-12-16 10:56:57 +01:00
|
|
|
v-if="searchList.length > 0"
|
2021-12-11 00:25:35 +01:00
|
|
|
prop_mytable="myskills"
|
|
|
|
|
prop_mytitle=""
|
|
|
|
|
:prop_mycolumns="colmySkills"
|
|
|
|
|
prop_colkey="idSkill"
|
2022-02-12 02:19:49 +01:00
|
|
|
col_title="descr"
|
|
|
|
|
col_footer="idCity"
|
|
|
|
|
col_tabfooter="mycities"
|
2022-02-14 15:38:23 +01:00
|
|
|
:vertical="costanti.VISUTABLE_LISTA"
|
|
|
|
|
:showType="costanti.SHOW_MYSKILL"
|
2022-01-28 00:57:28 +01:00
|
|
|
:nodataLabel="idSector > 0 ? 'Nessuna Competenza trovata': 'Selezionare un Settore'"
|
2021-12-11 00:25:35 +01:00
|
|
|
:prop_search="true"
|
|
|
|
|
:finder="true"
|
2022-02-15 13:37:33 +01:00
|
|
|
:choose_visutype="$q.screen.gt.xs"
|
2021-12-11 00:25:35 +01:00
|
|
|
:butt_modif_new="false"
|
|
|
|
|
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
|
|
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
|
|
|
|
:prop_searchList="searchList"
|
2021-12-16 10:56:57 +01:00
|
|
|
keyMain="idSkill"
|
2021-12-11 00:25:35 +01:00
|
|
|
:defaultnewrec="getdefaultnewrec"
|
|
|
|
|
:extraparams="extraparams()">
|
|
|
|
|
|
|
|
|
|
</CGridTableRec>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CFinder.ts">
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './CFinder.scss';
|
|
|
|
|
</style>
|