This commit is contained in:
2019-12-18 23:41:38 +00:00
parent 1c50e05c08
commit 56a031e9ac
5 changed files with 13 additions and 10 deletions

View File

@@ -436,7 +436,7 @@ export default function initialize() {
//FILES IN DATABASE
sub.push({
title: window.$gz.locale.get("FILES MANAGER"),
title: window.$gz.locale.get("Attachments"),
icon: "folder",
route: "/files",
key: key++
@@ -444,7 +444,7 @@ export default function initialize() {
//EVENT LOG / HISTORY
sub.push({
title: window.$gz.locale.get("HISTORY"),
title: window.$gz.locale.get("History"),
icon: "history",
route: "/history",
key: key++
@@ -452,9 +452,9 @@ export default function initialize() {
//KPI / METRICS / CHARTS AND STUFF
sub.push({
title: window.$gz.locale.get("KPI CHARTS"),
title: window.$gz.locale.get("Statistics"),
icon: "chart-line",
route: "/kpi",
route: "/statistics",
key: key++
});

View File

@@ -276,6 +276,7 @@ export default new Router({
component: () =>
import(/* webpackChunkName: "vendors" */ "./views/accounting.vue")
},
{
path: "/globalsettings",
name: "globalsettings",
@@ -327,10 +328,12 @@ export default new Router({
},
{
path: "/kpi",
name: "kpi",
path: "/statistics",
name: "statistics",
component: () =>
import(/* webpackChunkName: "administration" */ "./views/kpi.vue")
import(
/* webpackChunkName: "administration" */ "./views/statistics.vue"
)
},
{

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "folder",
title: window.$gz.locale.get("FILES MANAGER"),
title: window.$gz.locale.get("Attachments"),
helpUrl: "user-form-files-list"
});
}

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "history",
title: window.$gz.locale.get("HISTORY"),
title: window.$gz.locale.get("History"),
helpUrl: "user-form-history"
});
}

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "chart-line",
title: window.$gz.locale.get("KPI CHARTS"),
title: window.$gz.locale.get("Statistics"),
helpUrl: "user-form-kpi"
});
}