This commit is contained in:
@@ -657,6 +657,7 @@ TODO: //MIGRATE_OUTSTANDING comment tag
|
|||||||
todo: Schedule form
|
todo: Schedule form
|
||||||
- This one is big but requires the data to be there so as soon as implement enough things that are scheduleable then do this
|
- This one is big but requires the data to be there so as soon as implement enough things that are scheduleable then do this
|
||||||
- printing / reporting schedule? Do-able?
|
- printing / reporting schedule? Do-able?
|
||||||
|
- https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/729
|
||||||
|
|
||||||
|
|
||||||
todo: can beta test at this point
|
todo: can beta test at this point
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ function initNavPanel() {
|
|||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
//REMINDERS (SCHEDULE MARKERS)
|
//REMINDERS
|
||||||
sub.push({
|
sub.push({
|
||||||
title: "ReminderList",
|
title: "ReminderList",
|
||||||
icon: "$ayiStickyNote",
|
icon: "$ayiStickyNote",
|
||||||
@@ -183,6 +183,14 @@ function initNavPanel() {
|
|||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//REVIEWS
|
||||||
|
sub.push({
|
||||||
|
title: "ReviewList",
|
||||||
|
icon: "$ayiCalendarCheck",
|
||||||
|
route: "/home-reviews",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
//USER SETTINGS
|
//USER SETTINGS
|
||||||
sub.push({
|
sub.push({
|
||||||
title: "UserSettings",
|
title: "UserSettings",
|
||||||
|
|||||||
21
ayanova/src/views/ay-reminder.vue
Normal file
21
ayanova/src/views/ay-reminder.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction data-cy="underconstruction" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "$ayiStickyNote",
|
||||||
|
title: "Reminder",
|
||||||
|
helpUrl: "form-ay-reminder"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/home-reviews.vue
Normal file
21
ayanova/src/views/home-reviews.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction data-cy="underconstruction" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "$ayiCalendarCheck",
|
||||||
|
title: "ReviewList",
|
||||||
|
helpUrl: "form-home-reviews"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user