This commit is contained in:
2019-12-18 19:47:38 +00:00
parent 42585f185c
commit e55edaf571
3 changed files with 56 additions and 2 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: "pallet",
title: window.$gz.locale.get("PartByWarehouseInventoryList"),
helpUrl: "user-form-part-inventory-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: "pallet",
title: window.$gz.locale.get("PartByWarehouseInventoryList"),
helpUrl: "user-form-part-inventory-list"
});
}
};
</script>