This commit is contained in:
2019-12-18 19:02:05 +00:00
parent 70bfdc0f4d
commit d4bbac6dbc
3 changed files with 54 additions and 0 deletions

View File

@@ -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")
}

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: "address-card",
title: window.$gz.locale.get("ClientList"),
helpUrl: "user-form-customers"
});
}
};
</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: "sitemap",
title: window.$gz.locale.get("HeadOfficeList"),
helpUrl: "user-form-headoffices"
});
}
};
</script>