This commit is contained in:
@@ -199,9 +199,21 @@ export default new Router({
|
|||||||
import(/* webpackChunkName: "inventory" */ "./views/parts.vue")
|
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")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
21
ayanova/src/views/part-inventory-list.vue
Normal file
21
ayanova/src/views/part-inventory-list.vue
Normal 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>
|
||||||
21
ayanova/src/views/part-request-list.vue
Normal file
21
ayanova/src/views/part-request-list.vue
Normal 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>
|
||||||
Reference in New Issue
Block a user