32 lines
842 B
Vue
32 lines
842 B
Vue
|
|
<template>
|
||
|
|
<CMyPage title="Gas Ordini" imgbackground="images/fornitori.jpg" sizes="max-height: 120px">
|
||
|
|
<span>{{
|
||
|
|
setmeta({
|
||
|
|
title: 'Gas Ordini',
|
||
|
|
description: '',
|
||
|
|
keywords: '',
|
||
|
|
})
|
||
|
|
}}
|
||
|
|
</span>
|
||
|
|
|
||
|
|
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||
|
|
<CTitleBanner title="Gas Ordini"></CTitleBanner>
|
||
|
|
<CGridTableRec
|
||
|
|
prop_mytable="gasordines"
|
||
|
|
prop_mytitle="Lista Gas Ordini"
|
||
|
|
:prop_mycolumns="colTableGasordine"
|
||
|
|
prop_colkey="name"
|
||
|
|
nodataLabel="Nessun Gas Ordine"
|
||
|
|
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||
|
|
|
||
|
|
</CGridTableRec>
|
||
|
|
</div>
|
||
|
|
</CMyPage>
|
||
|
|
</template>
|
||
|
|
<script lang="ts" src="./gasordini.ts">
|
||
|
|
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import 'gasordini.scss';
|
||
|
|
</style>
|