This commit is contained in:
2020-07-01 21:45:13 +00:00
parent 5f95fe5e64
commit eb04e5e55c
6 changed files with 18 additions and 65 deletions

View File

@@ -80,6 +80,7 @@ function initNavPanel() {
])
) {
//DASHBOARD
//KPI / METRICS / CHARTS AND STUFF APPROPRIATE TO ROLE
sub.push({
title: "Dashboard",
icon: "fa-tachometer-alt",
@@ -592,14 +593,6 @@ function initNavPanel() {
key: key++
});
//KPI / METRICS / CHARTS AND STUFF
sub.push({
title: "Statistics",
icon: "fa-chart-line",
route: "/adm-statistics",
key: key++
});
// ** ADMINISTRATION (TOP)
addNavItem(
"Administration",

View File

@@ -343,13 +343,6 @@ export default new Router({
import(/* webpackChunkName: "adm" */ "./views/adm-history.vue")
},
{
path: "/adm-statistics",
name: "adm-statistics",
component: () =>
import(/* webpackChunkName: "adm" */ "./views/adm-statistics.vue")
},
{
path: "/ops-backup",
name: "ops-backup",

View File

@@ -1,24 +0,0 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-chart-line",
title: "Statistics",
helpUrl: "form-adm-statistics",
formData: {
ayaType: window.$gz.type.BizMetrics
}
});
}
};
</script>

View File

@@ -1,5 +1,10 @@
<template>
<UnderConstruction />
<div>
<h1>
//DASHBOARD - KPI / METRICS / CHARTS AND STUFF APPROPRIATE TO ROLE
</h1>
<UnderConstruction />
</div>
</template>
<script>