Reportistica Ore 1

This commit is contained in:
Paolo Arena
2021-02-21 02:05:17 +01:00
parent 7a202fbe8e
commit e752c406dc
5 changed files with 63 additions and 12 deletions

View File

@@ -105,7 +105,7 @@ module.exports = function (ctx) {
{ path: 'error-handler', server: true, client: true }, { path: 'error-handler', server: true, client: true },
{ path: 'globalroutines', server: true, client: true }, { path: 'globalroutines', server: true, client: true },
{ path: 'vue-idb', server: true, client: true }, { path: 'vue-idb', server: true, client: true },
{ path: 'dragula', server: true, client: true }, // { path: 'dragula', server: true, client: true },
{ path: 'guard', server: true, client: true }, { path: 'guard', server: true, client: true },
{ path: 'vuetelinput', server: true, client: true }, { path: 'vuetelinput', server: true, client: true },
{ path: 'mycharts', server: true, client: true }], { path: 'mycharts', server: true, client: true }],

View File

@@ -952,3 +952,21 @@ $heightBtn: 100%;
.clrespempty{ .clrespempty{
color: #DDDDDD; color: #DDDDDD;
} }
@media (max-width: 600px) {
.flex-item {
padding: 1px;
margin: 1px;
}
.flex-container {
margin: 0;
padding: 0;
}
.q-tab-panel {
padding: 4px;
}
}

View File

@@ -22,6 +22,7 @@ const msg_website_it = {
home: 'Home', home: 'Home',
profile: 'Profilo', profile: 'Profilo',
projects: 'Progetti', projects: 'Progetti',
report: 'Report',
producer: 'Produttore', producer: 'Produttore',
orderinfo: 'Ordini Effettuati', orderinfo: 'Ordini Effettuati',
products: 'Prodotti', products: 'Prodotti',

View File

@@ -94,7 +94,7 @@ const routes_projects: IListRoutes[] = [
level_parent: 0.0, level_parent: 0.0,
level_child: 0.5, level_child: 0.5,
component: () => import('@/views/projects/proj-list/proj-list.vue'), component: () => import('@/views/projects/proj-list/proj-list.vue'),
inmenu: functionality.SHOW_MESSAGES, inmenu: functionality.ENABLE_PROJECTS_LOADING,
infooter: functionality.ENABLE_PROJECTS_LOADING, infooter: functionality.ENABLE_PROJECTS_LOADING,
onlySocioResidente: true, onlySocioResidente: true,
onlyAdmin: true, onlyAdmin: true,
@@ -112,7 +112,7 @@ const routes_projects: IListRoutes[] = [
onlySocioResidente: true, onlySocioResidente: true,
onlyAdmin: true, onlyAdmin: true,
component: () => import('@/views/projects/proj-list/proj-list.vue'), component: () => import('@/views/projects/proj-list/proj-list.vue'),
inmenu: functionality.SHOW_MESSAGES, inmenu: functionality.ENABLE_PROJECTS_LOADING,
infooter: functionality.ENABLE_PROJECTS_LOADING, infooter: functionality.ENABLE_PROJECTS_LOADING,
idelem: process.env.PROJECT_ID_MAIN idelem: process.env.PROJECT_ID_MAIN
}, },
@@ -126,11 +126,25 @@ const routes_projects: IListRoutes[] = [
level_parent: 0.0, level_parent: 0.0,
level_child: 0.5, level_child: 0.5,
component: () => import('@/views/projects/proj-list/proj-list.vue'), component: () => import('@/views/projects/proj-list/proj-list.vue'),
inmenu: functionality.SHOW_MESSAGES, inmenu: functionality.ENABLE_PROJECTS_LOADING,
onlySocioResidente: true, onlySocioResidente: true,
onlyAdmin: true, onlyAdmin: true,
infooter: functionality.ENABLE_PROJECTS_LOADING, infooter: functionality.ENABLE_PROJECTS_LOADING,
idelem: process.env.PROJECT_ID_MAIN idelem: process.env.PROJECT_ID_MAIN
},
{
active: functionality.ENABLE_PROJECTS_LOADING,
order: 40,
path: '/report',
materialIcon: 'accessibility_new',
name: 'pages.report',
level_parent: 0.0,
level_child: 0.5,
component: () => import('@/views/projects/report/report.vue'),
inmenu: functionality.ENABLE_PROJECTS_LOADING,
onlySocioResidente: true,
onlyAdmin: true,
infooter: functionality.ENABLE_PROJECTS_LOADING,
} }
] ]
@@ -773,6 +787,18 @@ const baseroutes: IListRoutes[] = [
inmenu: false, inmenu: false,
infooter: false, infooter: false,
// idelem: process.env.PROJECT_ID_MAIN // idelem: process.env.PROJECT_ID_MAIN
},
{
active: functionality.ENABLE_PROJECTS_LOADING,
order: 40,
path: '/report',
urlroute: 'report',
materialIcon: 'accessibility_new',
name: 'pages.report',
component: () => import('@/views/projects/report/report.vue'),
inmenu: false,
infooter: false,
// idelem: process.env.PROJECT_ID_MAIN
} }
] ]

View File

@@ -1,14 +1,14 @@
<template> <template>
<q-page> <q-page>
<CMyPage title=""> <CMyPage title="">
<span>{{ <!--<span>{{
setmeta({ setmeta({
title: 'Home', title: 'Home',
description: $t('msg.myAppDescription'), description: $t('msg.myAppDescription'),
keywords: $t('msg.keywords_base') keywords: $t('msg.keywords_base')
}) })
}} }}
</span> </span>-->
<div class="landing"> <div class="landing">
<div v-if="!isLogged"> <div v-if="!isLogged">
@@ -19,6 +19,12 @@
</div> </div>
</div> </div>
<q-banner class="bg-positive text-white boldhigh"
style="text-align: center; ">
Benvenuti nella Nuova App della Comunità Nuovo Mondo... <br>
in costruzione...
</q-banner>
<div v-if="!tools.sito_online(true)" class="row text-h4 text-center bg-warning"> <div v-if="!tools.sito_online(true)" class="row text-h4 text-center bg-warning">
{{ $t('otherpages.sito_offline') }} {{ $t('otherpages.sito_offline') }}
</div> </div>