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

@@ -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>