This commit is contained in:
@@ -32,12 +32,20 @@ export default function initialize() {
|
|||||||
|
|
||||||
//DASHBOARD
|
//DASHBOARD
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("DashboardDashboard"),
|
title: window.$gz.locale.get("Dashboard"),
|
||||||
icon: "tachometer-alt",
|
icon: "tachometer-alt",
|
||||||
route: "/home-dashboard",
|
route: "/home-dashboard",
|
||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//SEARCH
|
||||||
|
sub.push({
|
||||||
|
title: window.$gz.locale.get("Search"),
|
||||||
|
icon: "search",
|
||||||
|
route: "/home-search",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
//SCHEDULE (personal)
|
//SCHEDULE (personal)
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("Schedule"),
|
title: window.$gz.locale.get("Schedule"),
|
||||||
@@ -56,7 +64,7 @@ export default function initialize() {
|
|||||||
|
|
||||||
//REMINDERS (SCHEDULE MARKERS)
|
//REMINDERS (SCHEDULE MARKERS)
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("ScheduleMarkerList"),
|
title: window.$gz.locale.get("ReminderList"),
|
||||||
icon: "sticky-note",
|
icon: "sticky-note",
|
||||||
route: "/home-reminders",
|
route: "/home-reminders",
|
||||||
key: key++
|
key: key++
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export default {
|
|||||||
coreKeys: [
|
coreKeys: [
|
||||||
//main nav options
|
//main nav options
|
||||||
"Home",
|
"Home",
|
||||||
"DashboardDashboard",
|
"Dashboard",
|
||||||
"Schedule",
|
"Schedule",
|
||||||
"MemoList",
|
"MemoList",
|
||||||
"Locale",
|
"Locale",
|
||||||
@@ -82,7 +82,7 @@ export default {
|
|||||||
"UserList",
|
"UserList",
|
||||||
"LocalizedTextDesign",
|
"LocalizedTextDesign",
|
||||||
"ReportList",
|
"ReportList",
|
||||||
"ScheduleMarkerList",
|
"ReminderList",
|
||||||
"Inventory",
|
"Inventory",
|
||||||
"Accounting",
|
"Accounting",
|
||||||
"Administration",
|
"Administration",
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "tachometer-alt",
|
icon: "tachometer-alt",
|
||||||
title: window.$gz.locale.get("DashboardDashboard"),
|
title: window.$gz.locale.get("Dashboard"),
|
||||||
helpUrl: "form-home-dashboard"
|
helpUrl: "form-home-dashboard"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "sticky-note",
|
icon: "sticky-note",
|
||||||
title: window.$gz.locale.get("ScheduleMarkerList"),
|
title: window.$gz.locale.get("ReminderList"),
|
||||||
helpUrl: "form-home-reminders"
|
helpUrl: "form-home-reminders"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
21
ayanova/src/views/home-search.vue
Normal file
21
ayanova/src/views/home-search.vue
Normal 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>
|
||||||
Reference in New Issue
Block a user