fix Registrazione data
fix linkref fix controllo login fix pagination CGridTableRec added CstatusReg e Cstatus
This commit is contained in:
1
src/rootgen/admin/zoomList/index.ts
Normal file
1
src/rootgen/admin/zoomList/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export {default as zoomList} from './zoomList.vue'
|
||||
0
src/rootgen/admin/zoomList/zoomList.scss
Normal file
0
src/rootgen/admin/zoomList/zoomList.scss
Normal file
17
src/rootgen/admin/zoomList/zoomList.ts
Normal file
17
src/rootgen/admin/zoomList/zoomList.ts
Normal 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
|
||||
}
|
||||
}
|
||||
20
src/rootgen/admin/zoomList/zoomList.vue
Normal file
20
src/rootgen/admin/zoomList/zoomList.vue
Normal 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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user