This commit is contained in:
2019-12-30 19:16:18 +00:00
parent 91a5346263
commit 1c208f0c48
5 changed files with 35 additions and 6 deletions

View File

@@ -32,12 +32,20 @@ export default function initialize() {
//DASHBOARD
sub.push({
title: window.$gz.locale.get("DashboardDashboard"),
title: window.$gz.locale.get("Dashboard"),
icon: "tachometer-alt",
route: "/home-dashboard",
key: key++
});
//SEARCH
sub.push({
title: window.$gz.locale.get("Search"),
icon: "search",
route: "/home-search",
key: key++
});
//SCHEDULE (personal)
sub.push({
title: window.$gz.locale.get("Schedule"),
@@ -56,7 +64,7 @@ export default function initialize() {
//REMINDERS (SCHEDULE MARKERS)
sub.push({
title: window.$gz.locale.get("ScheduleMarkerList"),
title: window.$gz.locale.get("ReminderList"),
icon: "sticky-note",
route: "/home-reminders",
key: key++

View File

@@ -48,7 +48,7 @@ export default {
coreKeys: [
//main nav options
"Home",
"DashboardDashboard",
"Dashboard",
"Schedule",
"MemoList",
"Locale",
@@ -82,7 +82,7 @@ export default {
"UserList",
"LocalizedTextDesign",
"ReportList",
"ScheduleMarkerList",
"ReminderList",
"Inventory",
"Accounting",
"Administration",

View File

@@ -23,7 +23,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "tachometer-alt",
title: window.$gz.locale.get("DashboardDashboard"),
title: window.$gz.locale.get("Dashboard"),
helpUrl: "form-home-dashboard"
});
}

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "sticky-note",
title: window.$gz.locale.get("ScheduleMarkerList"),
title: window.$gz.locale.get("ReminderList"),
helpUrl: "form-home-reminders"
});
}

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "search",
title: window.$gz.locale.get("Search"),
helpUrl: "form-home-search"
});
}
};
</script>