galleria prodotto
This commit is contained in:
@@ -6,7 +6,7 @@ import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec'
|
||||
|
||||
import { colTableProductInfos } from '@src/store/Modules/fieldsTable'
|
||||
import { colTableProductInfosShort } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@src/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
@@ -17,7 +17,7 @@ export default defineComponent({
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableProductInfos,
|
||||
colTableProductInfosShort,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Info Prodotti"></CTitleBanner>
|
||||
<CGridTableRec prop_mytable="productinfos" prop_mytitle="Lista Info Prodotti"
|
||||
:prop_mycolumns="colTableProductInfos" prop_colkey="name" nodataLabel="Nessun Info Prodotto"
|
||||
:prop_mycolumns="colTableProductInfosShort" prop_colkey="name" nodataLabel="Nessun Info Prodotto"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
|
||||
0
src/rootgen/admin/productInfosComplete/productInfosComplete.scss
Executable file
0
src/rootgen/admin/productInfosComplete/productInfosComplete.scss
Executable file
24
src/rootgen/admin/productInfosComplete/productInfosComplete.ts
Executable file
24
src/rootgen/admin/productInfosComplete/productInfosComplete.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@src/components/CCard'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec'
|
||||
|
||||
import { colTableProductInfos } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@src/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'productInfosComplete',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableProductInfos,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
28
src/rootgen/admin/productInfosComplete/productInfosComplete.vue
Executable file
28
src/rootgen/admin/productInfosComplete/productInfosComplete.vue
Executable file
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<CMyPage title="Info Prodotti" imgbackground="/images/prodotti.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Info Prodotti',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Info Prodotti"></CTitleBanner>
|
||||
<CGridTableRec prop_mytable="productinfos" prop_mytitle="Lista Info Prodotti"
|
||||
:prop_mycolumns="colTableProductInfos" prop_colkey="name" nodataLabel="Nessun Info Prodotto"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./productInfosComplete.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'productInfosComplete.scss';
|
||||
</style>
|
||||
@@ -7,6 +7,7 @@ import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec'
|
||||
|
||||
import { colTableProducts } from '@src/store/Modules/fieldsTable'
|
||||
import { colTableProdShort } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@src/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
@@ -17,7 +18,7 @@ export default defineComponent({
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableProducts,
|
||||
colTableProdShort,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<CGridTableRec
|
||||
prop_mytable="products"
|
||||
prop_mytitle="Lista Prodotti"
|
||||
:prop_mycolumns="colTableProducts"
|
||||
:prop_mycolumns="colTableProdShort"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Prodotto"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
Reference in New Issue
Block a user