This commit is contained in:
@@ -69,7 +69,7 @@ export default function initialize() {
|
||||
subSub.push({
|
||||
title: window.$gz.locale.get("Locale"),
|
||||
icon: "language",
|
||||
route: "/locale",
|
||||
route: "/userlocale",
|
||||
key: key++
|
||||
});
|
||||
|
||||
|
||||
@@ -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")
|
||||
}
|
||||
|
||||
|
||||
|
||||
21
ayanova/src/views/change-pw.vue
Normal file
21
ayanova/src/views/change-pw.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: "language",
|
||||
title: window.$gz.locale.get("SetLoginPassword"),
|
||||
helpUrl: "user-form-change-pw"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/notify-subscriptions.vue
Normal file
21
ayanova/src/views/notify-subscriptions.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: "bullhorn",
|
||||
title: window.$gz.locale.get("NotifySubscriptionList"),
|
||||
helpUrl: "user-form-notify-subscriptions"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/user-locale.vue
Normal file
21
ayanova/src/views/user-locale.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: "language",
|
||||
title: window.$gz.locale.get("Locale"),
|
||||
helpUrl: "user-form-user-locale"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user