This commit is contained in:
2019-12-30 23:33:58 +00:00
parent c01aacd92c
commit 86f804a2c7
4 changed files with 49 additions and 4 deletions

View File

@@ -88,6 +88,7 @@ export default {
"Administration",
"Operations",
"Attachments",
"Review",
"History",
"Statistics",
"Backup",

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: "paperclip",
title: window.$gz.locale.get("Attachments"),
helpUrl: "form-ay-attachments"
});
}
};
</script>

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-check",
title: window.$gz.locale.get("Review"),
helpUrl: "form-ay-review"
});
}
};
</script>