2022-02-03 00:33:05 +01:00
|
|
|
<template>
|
2022-12-02 13:24:20 +01:00
|
|
|
<div class="q-my-sm">
|
2022-09-13 12:28:33 +02:00
|
|
|
<CNotifAtTop />
|
2022-03-09 14:53:17 +01:00
|
|
|
<!--<q-banner
|
2022-02-25 19:20:51 +01:00
|
|
|
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>
|
2022-02-26 17:35:36 +01:00
|
|
|
<span class="mybanner">Questa sezione è ancora in fase di miglioramento.</span>
|
2022-02-25 19:20:51 +01:00
|
|
|
|
2022-03-09 14:53:17 +01:00
|
|
|
</q-banner>-->
|
2022-02-25 19:20:51 +01:00
|
|
|
|
2022-02-03 00:33:05 +01:00
|
|
|
<CMyGroups
|
|
|
|
|
v-model="filter"
|
|
|
|
|
:finder="true"
|
|
|
|
|
>
|
2022-02-22 15:24:16 +01:00
|
|
|
|
|
|
|
|
<CFinder
|
2023-02-23 16:07:52 +01:00
|
|
|
:ind="tools.getIndMainCardsByTable(toolsext.TABMYGROUPS)"
|
2022-02-22 15:24:16 +01:00
|
|
|
:table="toolsext.TABMYGROUPS"
|
2022-03-06 01:44:54 +01:00
|
|
|
:showFilterPersonal="true"
|
2022-02-22 15:24:16 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!--
|
2022-02-03 00:33:05 +01:00
|
|
|
<CGridTableRec
|
|
|
|
|
prop_mytable="mygroups"
|
|
|
|
|
prop_mytitle=""
|
|
|
|
|
:prop_mycolumns="colmyUserGroup"
|
|
|
|
|
prop_colkey="_id"
|
|
|
|
|
col_title="groupname"
|
2022-02-22 15:24:16 +01:00
|
|
|
:vertical="costanti.VISUTABLE_SCHEDA_GROUP"
|
2022-02-08 23:06:22 +01:00
|
|
|
nodataLabel=" Nessun Gruppo"
|
2022-02-03 00:33:05 +01:00
|
|
|
:prop_search="true"
|
|
|
|
|
hint="nome del gruppo da trovare"
|
|
|
|
|
:finder="true"
|
|
|
|
|
:choose_visutype="true"
|
|
|
|
|
:finder_noNull="false"
|
2022-02-19 22:02:54 +01:00
|
|
|
:options="shared_consts.OPTIONS_SEARCH_USER_ALL_WORDS"
|
2022-02-03 00:33:05 +01:00
|
|
|
:butt_modif_new="true"
|
|
|
|
|
noresultLabel="nome del gruppo non trovato"
|
|
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
|
|
|
|
:prop_searchList="searchList"
|
|
|
|
|
:showType="costanti.SHOW_GROUPINFO"
|
|
|
|
|
:showCol="false"
|
2022-02-19 22:02:54 +01:00
|
|
|
:defaultnewrec="getdefaultnewrec"
|
2022-02-03 00:33:05 +01:00
|
|
|
:extraparams="extraparams()">
|
|
|
|
|
|
|
|
|
|
</CGridTableRec>
|
2022-02-22 15:24:16 +01:00
|
|
|
-->
|
2022-02-03 00:33:05 +01:00
|
|
|
</CMyGroups>
|
|
|
|
|
|
|
|
|
|
<div v-if="filter === costanti.CREATE_GROUP">
|
|
|
|
|
Nuovo Gruppo:
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./mygroups.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './mygroups.scss';
|
|
|
|
|
</style>
|
|
|
|
|
|