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

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