feat: add page breadcrumb
parent
bf864b9b3c
commit
fb3a7f1b97
|
|
@ -14,7 +14,7 @@ export default [
|
|||
icon: { icon: 'tabler-topology-bus' },
|
||||
children: [
|
||||
{
|
||||
title: 'BL not sent',
|
||||
title: 'BL not sent list',
|
||||
to: { name: 'flux-bl-not-sent' },
|
||||
icon: { icon: 'tabler-unlink' },
|
||||
},
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export default [
|
|||
icon: { icon: 'tabler-topology-bus' },
|
||||
children: [
|
||||
{
|
||||
title: 'BL not sent',
|
||||
title: 'BL not sent list',
|
||||
to: { name: 'flux-bl-not-sent' },
|
||||
icon: { icon: 'tabler-unlink' },
|
||||
},
|
||||
|
|
|
|||
|
|
@ -147,6 +147,14 @@ const exportEXCEL = () => {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<VBreadcrumbs
|
||||
class="px-0 py-2"
|
||||
:items="[
|
||||
{ title: t('Home'), to: { name: 'root' } },
|
||||
{ title: t('BL not sent list') },
|
||||
]"
|
||||
/>
|
||||
<div>
|
||||
<div>
|
||||
<!-- 👉 Statistics Widgets -->
|
||||
<VCard class="mb-6">
|
||||
|
|
@ -298,4 +306,5 @@ const exportEXCEL = () => {
|
|||
</VCol>
|
||||
</Vcard>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,14 @@ const { data: storeData } = await useApi<any>(`/stores/${route.query.storeId}/de
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<VBreadcrumbs
|
||||
class="px-0 py-2"
|
||||
:items="[
|
||||
{ title: t('Home'), to: { name: 'root' } },
|
||||
{ title: t('List of stores'), to: { name: 'store-list' } },
|
||||
{ title: t('Store visualization') },
|
||||
]"
|
||||
/>
|
||||
<div>
|
||||
<StoreHeader
|
||||
class="mb-5"
|
||||
|
|
|
|||
|
|
@ -124,6 +124,13 @@ const reloadStores = async () => {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<VBreadcrumbs
|
||||
class="px-0 py-2"
|
||||
:items="[
|
||||
{ title: t('Home'), to: { name: 'root' } },
|
||||
{ title: t('List of stores') },
|
||||
]"
|
||||
/>
|
||||
<div>
|
||||
<!-- 👉 filters -->
|
||||
<VCard
|
||||
|
|
|
|||
|
|
@ -238,6 +238,13 @@ const exportEXCEL = () => {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<VBreadcrumbs
|
||||
class="px-0 py-2"
|
||||
:items="[
|
||||
{ title: t('Home'), to: { name: 'root' } },
|
||||
{ title: t('Logs list') },
|
||||
]"
|
||||
/>
|
||||
<div>
|
||||
<!-- 👉 Statistics Widgets -->
|
||||
<VCard class="mb-6">
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
"OBI": "OBI",
|
||||
"Dotsoft": "Dotsoft",
|
||||
"List of stores": "قائمة المتاجر",
|
||||
"Store visualization": "عرض المتاجر",
|
||||
"BL not sent list": "قائمة البيانات الخارجية غير المرسلة",
|
||||
"BL not sent": "بيانات البيانات الخارجية غير المرسلة",
|
||||
"ST ID": "ST ID",
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
"OBI": "OBI",
|
||||
"Dotsoft": "Dotsoft",
|
||||
"List of stores": "List of stores",
|
||||
"Store visualization": "Store visualization",
|
||||
"BL not sent list": "BL not sent list",
|
||||
"BL not sent": "BL not sent",
|
||||
"ST ID": "ST ID",
|
||||
|
|
|
|||
|
|
@ -6,8 +6,9 @@
|
|||
"OBI": "OBI",
|
||||
"Dotsoft": "Dotsoft",
|
||||
"List of stores": "Liste des boutiques",
|
||||
"BL not sent list": "Liste des BL non envoyés",
|
||||
"BL not sent": "BL non envoyé",
|
||||
"Store visualization": "Visualisation boutique",
|
||||
"BL not sent list": "Liste BL non envoyés",
|
||||
"BL not sent": "BL non envoyés",
|
||||
"ST ID": "ID ST",
|
||||
"Exp ID": "ID Exp",
|
||||
"BL ID": "ID BL",
|
||||
|
|
|
|||
Loading…
Reference in New Issue