This commit is contained in:
@@ -112,6 +112,18 @@ export default new Router({
|
||||
name: "notifysubscriptions",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "aybase" */ "./views/notify-subscriptions.vue")
|
||||
},
|
||||
{
|
||||
path: "/customers",
|
||||
name: "customers",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "customer" */ "./views/customers.vue")
|
||||
},
|
||||
{
|
||||
path: "/headoffices",
|
||||
name: "headoffices",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "customer" */ "./views/headoffices.vue")
|
||||
}
|
||||
|
||||
|
||||
|
||||
21
ayanova/src/views/customers.vue
Normal file
21
ayanova/src/views/customers.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: "address-card",
|
||||
title: window.$gz.locale.get("ClientList"),
|
||||
helpUrl: "user-form-customers"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/headoffices.vue
Normal file
21
ayanova/src/views/headoffices.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: "sitemap",
|
||||
title: window.$gz.locale.get("HeadOfficeList"),
|
||||
helpUrl: "user-form-headoffices"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user