- Possibilità di modificare un record, click sulla matita rossa. - corretto altre sistemazioni sui valori di minimo e massimo quantità.
28 lines
817 B
Vue
Executable File
28 lines
817 B
Vue
Executable File
<template>
|
|
<CMyPage :title="t('pages.gestoreordinigas')" imgbackground="/images/fornitori.jpg" sizes="max-height: 120px">
|
|
<span>{{
|
|
setmeta({
|
|
title: t('pages.gestoreordinigas'),
|
|
description: '',
|
|
keywords: '',
|
|
})
|
|
}}
|
|
</span>
|
|
|
|
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
|
<CTitleBanner :title="t('pages.gestoreordinigas')"></CTitleBanner>
|
|
<CGridTableRec prop_mytable="gasordines" :prop_mytitle="t('pages.gestoreordinigas')" :prop_mycolumns="colTableGasordine"
|
|
prop_colkey="name" nodataLabel="Nessun Gas"
|
|
noresultLabel="Il filtro selezionato non ha trovato nessun GAS">
|
|
|
|
</CGridTableRec>
|
|
</div>
|
|
</CMyPage>
|
|
</template>
|
|
<script lang="ts" src="./gasordini.ts">
|
|
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import 'gasordini.scss';
|
|
</style>
|