This commit is contained in:
2019-12-18 18:58:49 +00:00
parent 67527e72c9
commit 70bfdc0f4d
5 changed files with 82 additions and 1 deletions

View File

@@ -69,7 +69,7 @@ export default function initialize() {
subSub.push({
title: window.$gz.locale.get("Locale"),
icon: "language",
route: "/locale",
route: "/userlocale",
key: key++
});

View File

@@ -94,6 +94,24 @@ export default new Router({
name: "reminder",
component: () =>
import(/* webpackChunkName: "aybase" */ "./views/reminder.vue")
},
{
path: "/userlocale",
name: "userlocale",
component: () =>
import(/* webpackChunkName: "aybase" */ "./views/user-locale.vue")
},
{
path: "/changepw",
name: "changepw",
component: () =>
import(/* webpackChunkName: "aybase" */ "./views/change-pw.vue")
},
{
path: "/notifysubscriptions",
name: "notifysubscriptions",
component: () =>
import(/* webpackChunkName: "aybase" */ "./views/notify-subscriptions.vue")
}

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: "language",
title: window.$gz.locale.get("SetLoginPassword"),
helpUrl: "user-form-change-pw"
});
}
};
</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: "bullhorn",
title: window.$gz.locale.get("NotifySubscriptionList"),
helpUrl: "user-form-notify-subscriptions"
});
}
};
</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: "language",
title: window.$gz.locale.get("Locale"),
helpUrl: "user-form-user-locale"
});
}
};
</script>