34 lines
1.1 KiB
Vue
34 lines
1.1 KiB
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<span>{{ setmeta({
|
||
|
|
title: 'Lista Ore',
|
||
|
|
description: "",
|
||
|
|
keywords: '' } ) }}
|
||
|
|
</span>
|
||
|
|
|
||
|
|
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||
|
|
<CTitleBanner title="Lista Ore"></CTitleBanner>
|
||
|
|
<CGridTableRec prop_mytable="hours"
|
||
|
|
prop_mytitle="Lista Ore"
|
||
|
|
:prop_mycolumns="getcolHours"
|
||
|
|
prop_colkey="descr"
|
||
|
|
nodataLabel="Nessuna Lista Ore"
|
||
|
|
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
|
||
|
|
:arrfilters="myarrfilterand"
|
||
|
|
:filterdef="myfilterdef"
|
||
|
|
:prop_codeId="todoId"
|
||
|
|
:defaultnewrec="defaultnewrec"
|
||
|
|
:extraparams="extraparams"
|
||
|
|
>
|
||
|
|
|
||
|
|
</CGridTableRec>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script lang="ts" src="./CHours.ts">
|
||
|
|
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import 'CHours.scss';
|
||
|
|
</style>
|