This commit is contained in:
@@ -47,8 +47,7 @@ CURRENT TODOs
|
||||
|
||||
SHELL / NAV / MENUS / LAYOUT
|
||||
|
||||
TODO: MEMO sb MEMOS in user menu
|
||||
TODO: Set password using wrong icon
|
||||
|
||||
TODO: help for svc schedule giong to user schedule sb form-svc-schedule
|
||||
TODO: See if there is an alternate accounting logo without the dollar sign that can be used
|
||||
TODO: NOtification subscriptions and ops notification settings using same logo, is there a more suitable ops settings one because the user one is fine (bullhorn)
|
||||
|
||||
@@ -42,14 +42,14 @@ export default function initialize() {
|
||||
//SCHEDULE (personal)
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("Schedule"),
|
||||
icon: "calendar-alt",
|
||||
route: "/schedule/me", //Note: "me" is code for current user id in schedule form, any single user id can be substituted for me as well
|
||||
icon: "calendar-day",
|
||||
route: "/home-schedule",
|
||||
key: key++
|
||||
});
|
||||
|
||||
//MEMOS
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("Memo"),
|
||||
title: window.$gz.locale.get("MemoList"),
|
||||
icon: "inbox",
|
||||
route: "/memo",
|
||||
key: key++
|
||||
@@ -146,7 +146,7 @@ export default function initialize() {
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("Schedule"),
|
||||
icon: "calendar-alt",
|
||||
route: "/schedule/all",
|
||||
route: "/svc-schedule",
|
||||
key: key++
|
||||
});
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ export default {
|
||||
"Home",
|
||||
"DashboardDashboard",
|
||||
"Schedule",
|
||||
"Memo",
|
||||
"MemoList",
|
||||
"Locale",
|
||||
"SetLoginPassword",
|
||||
"NotifySubscriptionList",
|
||||
|
||||
@@ -77,10 +77,10 @@ export default new Router({
|
||||
import(/* webpackChunkName: "aybase" */ "./views/dashboard.vue")
|
||||
},
|
||||
{
|
||||
path: "/schedule/:scopeid",
|
||||
name: "schedule",
|
||||
path: "/home-schedule",
|
||||
name: "home-schedule",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "aybase" */ "./views/schedule.vue")
|
||||
import(/* webpackChunkName: "aybase" */ "./views/home-schedule.vue")
|
||||
},
|
||||
{
|
||||
path: "/memo",
|
||||
@@ -126,6 +126,12 @@ export default new Router({
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "customer" */ "./views/headoffices.vue")
|
||||
},
|
||||
{
|
||||
path: "/svc-schedule",
|
||||
name: "svc-schedule",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "aybase" */ "./views/svc-schedule.vue")
|
||||
},
|
||||
{
|
||||
path: "/workorders",
|
||||
name: "workorders",
|
||||
|
||||
@@ -12,7 +12,7 @@ export default {
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "language",
|
||||
icon: "key",
|
||||
title: window.$gz.locale.get("SetLoginPassword"),
|
||||
helpUrl: "form-home-password"
|
||||
});
|
||||
|
||||
@@ -12,7 +12,7 @@ export default {
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "calendar-alt",
|
||||
icon: "calendar-day",
|
||||
title: window.$gz.locale.get("Schedule"),
|
||||
helpUrl: "form-home-schedule"
|
||||
});
|
||||
21
ayanova/src/views/svc-schedule.vue
Normal file
21
ayanova/src/views/svc-schedule.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: "calendar-alt",
|
||||
title: window.$gz.locale.get("Schedule"),
|
||||
helpUrl: "form-svc-schedule"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user