This commit is contained in:
2020-01-06 19:22:49 +00:00
parent 8955a56149
commit 3202692593
3 changed files with 48 additions and 5 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: "child",
title: window.$gz.locale.get("ClientServiceRequestList"),
helpUrl: "form-customer-csr-list"
});
}
};
</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: "tools",
title: window.$gz.locale.get("WorkorderServiceList"),
helpUrl: "form-customer-workorders"
});
}
};
</script>