fix Registrazione data

fix linkref
fix controllo login
fix pagination CGridTableRec
added CstatusReg e Cstatus
This commit is contained in:
Paolo Arena
2020-01-21 01:38:28 +01:00
parent 7104f7d1e0
commit 415c431270
20 changed files with 233 additions and 19 deletions

View File

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

View File

View File

@@ -0,0 +1,17 @@
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import { CGridTableRec } from '@components'
import { CMyPage } from '../../../components/CMyPage/index'
import { fieldsTable } from '@src/store/Modules/fieldsTable'
@Component({
components: { CGridTableRec, CMyPage }
})
export default class ZoomList extends Vue {
get db_fieldsTable() {
return fieldsTable
}
}

View File

@@ -0,0 +1,20 @@
<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>