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

@@ -50,14 +50,16 @@ SHELL / NAV / MENUS / LAYOUT
TODO: STUB OUT MENU ITEMS MISSING
- WIKI
- In Widget edit form
- ATTACHMENTS
- icon: paperclip
- Widget edit form menu
- Opens to a new form
- FOLLOW UP now "Review"
- "Review" (was follow ups)
- icon: calendar-check
- Now separate from schedule markers which are now called "Reminders" and use a sticky note
- Widget edit form menu
- Record history
- History (was record history)
- icon: history
- Widget edit form menu
TODO: Put useful info in page title when routing so that user can see history and easily select past record etc, right now it always just says AyaNova and nothing more

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>