forked from verdnatura/salix-front
Item log
This commit is contained in:
parent
036dcaadd2
commit
726699bbc5
|
@ -1119,6 +1119,7 @@ item:
|
|||
tags: Tags
|
||||
wasteBreakdown: Waste breakdown
|
||||
itemCreate: New item
|
||||
log: Log
|
||||
descriptor:
|
||||
item: Item
|
||||
buyer: Buyer
|
||||
|
|
|
@ -1118,6 +1118,7 @@ item:
|
|||
tags: Etiquetas
|
||||
wasteBreakdown: Deglose de mermas
|
||||
itemCreate: Nuevo artículo
|
||||
log: Historial
|
||||
descriptor:
|
||||
item: Artículo
|
||||
buyer: Comprador
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
<script setup>
|
||||
import VnLog from 'src/components/common/VnLog.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VnLog model="Item" url="/ItemLogs"></VnLog>
|
||||
</template>
|
|
@ -6,12 +6,13 @@ export default {
|
|||
meta: {
|
||||
title: 'items',
|
||||
icon: 'vn:item',
|
||||
moduleName: 'Item',
|
||||
},
|
||||
component: RouterView,
|
||||
redirect: { name: 'ItemMain' },
|
||||
menus: {
|
||||
main: ['ItemList', 'WasteBreakdown'],
|
||||
card: ['ItemBasicData'],
|
||||
card: ['ItemBasicData', 'ItemLog'],
|
||||
},
|
||||
children: [
|
||||
{
|
||||
|
@ -94,6 +95,15 @@ export default {
|
|||
},
|
||||
component: () => import('src/pages/Item/Card/ItemBasicData.vue'),
|
||||
},
|
||||
{
|
||||
path: 'log',
|
||||
name: 'ItemLog',
|
||||
meta: {
|
||||
title: 'log',
|
||||
icon: 'history',
|
||||
},
|
||||
component: () => import('src/pages/Item/Card/ItemLog.vue'),
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue