This commit is contained in:
2019-12-20 19:56:44 +00:00
parent 82fb9389e7
commit baf2789332
7 changed files with 38 additions and 12 deletions

View File

@@ -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)

View File

@@ -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++
});

View File

@@ -50,7 +50,7 @@ export default {
"Home",
"DashboardDashboard",
"Schedule",
"Memo",
"MemoList",
"Locale",
"SetLoginPassword",
"NotifySubscriptionList",

View File

@@ -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",

View File

@@ -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"
});

View File

@@ -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"
});

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: "calendar-alt",
title: window.$gz.locale.get("Schedule"),
helpUrl: "form-svc-schedule"
});
}
};
</script>