inserimento in Movimenti del Circuito

This commit is contained in:
Surya Paolo
2024-01-04 15:43:18 +01:00
parent eed62bde78
commit be6ce49698
10 changed files with 24 additions and 6 deletions

View File

@@ -105,6 +105,12 @@
justify-content: center;
}
.card_titolo_prod{
text-align: center;
padding: 4px 4px 4px 4px;
height: 70px;
}
.image-container {
width: 300px;
height: 300px;

View File

@@ -167,7 +167,7 @@
</q-list>
</q-card-section>
<q-card-section>
<q-card-section class="card_titolo_prod">
<div class="column items-center centeritems">
<div class="text-h7 boldhigh titolo_prod">
{{ myproduct.productInfo.name }}

View File

@@ -233,6 +233,7 @@ export interface IConfPages {
showMsgs: boolean
showNotif: boolean
showCoins: boolean
showMenuCoins: boolean
showNameSurname: boolean
showCompetenze: boolean
showConnected: boolean

View File

@@ -493,6 +493,16 @@
:type="costanti.FieldType.boolean"
>
</CMyFieldDb>
<CMyFieldDb
table="sites"
:title="$t('confpages.showMenuCoins')"
:id="mysite._id"
:rec="mysite"
mykey="confpages"
mysubkey="showMenuCoins"
:type="costanti.FieldType.boolean"
>
</CMyFieldDb>
<CMyFieldDb
table="sites"
:title="$t('confpages.showNameSurname')"

View File

@@ -227,7 +227,7 @@ function getRoutesAd(site: ISites) {
*/
{
active: site.confpages.showCoins,
active: site.confpages.showMenuCoins,
path: '/admin/ris',
order: 60,
faIcon: 'fa fa-list-alt',

View File

@@ -319,8 +319,8 @@ function getRoutesEcomm(site: ISites) {
active: site.confpages && site.confpages.enableEcommerce,
path: '/ecommerce',
order: 1402,
faIcon: 'fa fa-list-alt',
materialIcon: 'next_week',
faIcon: 'fas fa-lemon',
materialIcon: 'fas fa-lemon',
name: 'pages.ecommerce',
routes2: routes_ecommerce,
inmenu: true,
@@ -334,7 +334,6 @@ function getRoutesEcomm(site: ISites) {
active: site.confpages && site.confpages.enableEcommerce,
path: '/admin/ecommerce',
order: 1420,
faIcon: 'fa fa-list-alt',
materialIcon: 'next_week',
name: 'pages.admin_ecommerce',
routes2: routes_admin_ecommerce,

View File

@@ -138,7 +138,7 @@ const msg_it = {
navi: 'Navi',
listadoni_navi: 'Lista Doni Navi',
newsletter: 'Newsletter',
monete: 'RIS',
monete: 'Circuiti Monetari',
pages: 'Pagine',
Home: 'Pagina Home',
elems: 'Elementi Pagine',
@@ -1558,6 +1558,7 @@ const msg_it = {
showMsgs: 'Messaggi',
showNotif: 'Notifiche',
showCoins: 'RIS',
showMenuCoins: 'Menu Monete',
showNameSurname: 'Mostra Nome e Cognome',
showCompetenze: 'Mostra Competenze',
showConnected: 'Stato Connessione',

View File

@@ -162,6 +162,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
showMsgs: false,
showNotif: false,
showCoins: false,
showMenuCoins: false,
showNameSurname: false,
showCompetenze: false,
showConnected: false,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 40 KiB