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

@@ -199,9 +199,21 @@ export default new Router({
import(/* webpackChunkName: "inventory" */ "./views/parts.vue")
}
,
{
path: "/partinventorylist",
name: "partinventorylist",
component: () =>
import(/* webpackChunkName: "inventory" */ "./views/part-inventory-list.vue")
}
,
{
path: "/partrequests",
name: "partrequests",
component: () =>
import(/* webpackChunkName: "inventory" */ "./views/part-request-list.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: "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>