This commit is contained in:
@@ -47,8 +47,7 @@ CURRENT TODOs
|
|||||||
|
|
||||||
SHELL / NAV / MENUS / LAYOUT
|
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: 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: 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)
|
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)
|
//SCHEDULE (personal)
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("Schedule"),
|
title: window.$gz.locale.get("Schedule"),
|
||||||
icon: "calendar-alt",
|
icon: "calendar-day",
|
||||||
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
|
route: "/home-schedule",
|
||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
//MEMOS
|
//MEMOS
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("Memo"),
|
title: window.$gz.locale.get("MemoList"),
|
||||||
icon: "inbox",
|
icon: "inbox",
|
||||||
route: "/memo",
|
route: "/memo",
|
||||||
key: key++
|
key: key++
|
||||||
@@ -146,7 +146,7 @@ export default function initialize() {
|
|||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("Schedule"),
|
title: window.$gz.locale.get("Schedule"),
|
||||||
icon: "calendar-alt",
|
icon: "calendar-alt",
|
||||||
route: "/schedule/all",
|
route: "/svc-schedule",
|
||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ export default {
|
|||||||
"Home",
|
"Home",
|
||||||
"DashboardDashboard",
|
"DashboardDashboard",
|
||||||
"Schedule",
|
"Schedule",
|
||||||
"Memo",
|
"MemoList",
|
||||||
"Locale",
|
"Locale",
|
||||||
"SetLoginPassword",
|
"SetLoginPassword",
|
||||||
"NotifySubscriptionList",
|
"NotifySubscriptionList",
|
||||||
|
|||||||
@@ -77,10 +77,10 @@ export default new Router({
|
|||||||
import(/* webpackChunkName: "aybase" */ "./views/dashboard.vue")
|
import(/* webpackChunkName: "aybase" */ "./views/dashboard.vue")
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/schedule/:scopeid",
|
path: "/home-schedule",
|
||||||
name: "schedule",
|
name: "home-schedule",
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "aybase" */ "./views/schedule.vue")
|
import(/* webpackChunkName: "aybase" */ "./views/home-schedule.vue")
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/memo",
|
path: "/memo",
|
||||||
@@ -126,6 +126,12 @@ export default new Router({
|
|||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "customer" */ "./views/headoffices.vue")
|
import(/* webpackChunkName: "customer" */ "./views/headoffices.vue")
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/svc-schedule",
|
||||||
|
name: "svc-schedule",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "aybase" */ "./views/svc-schedule.vue")
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/workorders",
|
path: "/workorders",
|
||||||
name: "workorders",
|
name: "workorders",
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ export default {
|
|||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "language",
|
icon: "key",
|
||||||
title: window.$gz.locale.get("SetLoginPassword"),
|
title: window.$gz.locale.get("SetLoginPassword"),
|
||||||
helpUrl: "form-home-password"
|
helpUrl: "form-home-password"
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ export default {
|
|||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "calendar-alt",
|
icon: "calendar-day",
|
||||||
title: window.$gz.locale.get("Schedule"),
|
title: window.$gz.locale.get("Schedule"),
|
||||||
helpUrl: "form-home-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