This commit is contained in:
@@ -50,14 +50,16 @@ SHELL / NAV / MENUS / LAYOUT
|
|||||||
|
|
||||||
TODO: STUB OUT MENU ITEMS MISSING
|
TODO: STUB OUT MENU ITEMS MISSING
|
||||||
|
|
||||||
- WIKI
|
|
||||||
- In Widget edit form
|
|
||||||
- ATTACHMENTS
|
- ATTACHMENTS
|
||||||
|
- icon: paperclip
|
||||||
- Widget edit form menu
|
- Widget edit form menu
|
||||||
- Opens to a new form
|
- 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
|
- Widget edit form menu
|
||||||
- Record history
|
- History (was record history)
|
||||||
|
- icon: history
|
||||||
- Widget edit form menu
|
- 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
|
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
|
||||||
|
|||||||
@@ -88,6 +88,7 @@ export default {
|
|||||||
"Administration",
|
"Administration",
|
||||||
"Operations",
|
"Operations",
|
||||||
"Attachments",
|
"Attachments",
|
||||||
|
"Review",
|
||||||
"History",
|
"History",
|
||||||
"Statistics",
|
"Statistics",
|
||||||
"Backup",
|
"Backup",
|
||||||
|
|||||||
21
ayanova/src/views/ay-attachments.vue
Normal file
21
ayanova/src/views/ay-attachments.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: "paperclip",
|
||||||
|
title: window.$gz.locale.get("Attachments"),
|
||||||
|
helpUrl: "form-ay-attachments"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/ay-review.vue
Normal file
21
ayanova/src/views/ay-review.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-check",
|
||||||
|
title: window.$gz.locale.get("Review"),
|
||||||
|
helpUrl: "form-ay-review"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user