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
|
|
|
|
|
|
|
|
<div v-if="true" class="q-mr-sm">
|
|
|
|
|
<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"
|
|
|
|
|
col_title="subTitle"
|
2022-02-05 23:28:01 +01:00
|
|
|
:vertical="-1"
|
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-01-23 23:25:19 +01:00
|
|
|
:choose_visutype="true"
|
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>
|