This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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>
|
||||
@@ -1,5 +1,10 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
<div>
|
||||
<h1>
|
||||
//DASHBOARD - KPI / METRICS / CHARTS AND STUFF APPROPRIATE TO ROLE
|
||||
</h1>
|
||||
<UnderConstruction />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
Reference in New Issue
Block a user