CGridTableRec + fields + page

pagine:
- Siti Web
- Operazioni
- Push...
This commit is contained in:
Paolo Arena
2021-09-19 20:07:28 +02:00
parent 622bd6943d
commit db4b06f67f
96 changed files with 2561 additions and 4328 deletions

View File

@@ -0,0 +1 @@
export {default as zoomList} from './zoomList.vue'

View File

View File

@@ -0,0 +1,20 @@
import { defineComponent } from 'vue'
import { CMyPage } from '@/components/CMyPage'
import { CGridTableRec } from '@/components/CGridTableRec'
import { fieldsTable } from '@src/store/Modules/fieldsTable'
export default defineComponent({
name: 'ZoomList',
components: { CMyPage,CGridTableRec },
setup() {
function db_fieldsTable() {
return fieldsTable
}
return {
db_fieldsTable,
}
}
})

View File

@@ -0,0 +1,21 @@
<template>
<CMyPage img="" :title="$t('otherpages.admin.zoomlist')" keywords="" :description="$t('otherpages.admin.zoomlist')">
<CGridTableRec
prop_mytable="calzoom"
:prop_mytitle="$t('otherpages.admin.zoomlist')"
:prop_mycolumns="db_fieldsTable().colTableCalZoom"
prop_colkey="_id"
nodataLabel="Nessuno Zoom"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
</CGridTableRec>
</CMyPage>
</template>
<script lang="ts" src="./zoomList.ts">
</script>
<style lang="scss" scoped>
@import './zoomList.scss';
</style>