feat: add page breadcrumb

refactor/issue-1/first-setup
Frédérik Benoist 2023-12-31 14:09:49 +01:00
parent bf864b9b3c
commit fb3a7f1b97
9 changed files with 177 additions and 143 deletions

View File

@ -14,7 +14,7 @@ export default [
icon: { icon: 'tabler-topology-bus' }, icon: { icon: 'tabler-topology-bus' },
children: [ children: [
{ {
title: 'BL not sent', title: 'BL not sent list',
to: { name: 'flux-bl-not-sent' }, to: { name: 'flux-bl-not-sent' },
icon: { icon: 'tabler-unlink' }, icon: { icon: 'tabler-unlink' },
}, },

View File

@ -14,7 +14,7 @@ export default [
icon: { icon: 'tabler-topology-bus' }, icon: { icon: 'tabler-topology-bus' },
children: [ children: [
{ {
title: 'BL not sent', title: 'BL not sent list',
to: { name: 'flux-bl-not-sent' }, to: { name: 'flux-bl-not-sent' },
icon: { icon: 'tabler-unlink' }, icon: { icon: 'tabler-unlink' },
}, },

View File

@ -147,6 +147,14 @@ const exportEXCEL = () => {
</script> </script>
<template> <template>
<VBreadcrumbs
class="px-0 py-2"
:items="[
{ title: t('Home'), to: { name: 'root' } },
{ title: t('BL not sent list') },
]"
/>
<div>
<div> <div>
<!-- 👉 Statistics Widgets --> <!-- 👉 Statistics Widgets -->
<VCard class="mb-6"> <VCard class="mb-6">
@ -298,4 +306,5 @@ const exportEXCEL = () => {
</VCol> </VCol>
</Vcard> </Vcard>
</div> </div>
</div>
</template> </template>

View File

@ -25,6 +25,14 @@ const { data: storeData } = await useApi<any>(`/stores/${route.query.storeId}/de
</script> </script>
<template> <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> <div>
<StoreHeader <StoreHeader
class="mb-5" class="mb-5"

View File

@ -124,6 +124,13 @@ const reloadStores = async () => {
</script> </script>
<template> <template>
<VBreadcrumbs
class="px-0 py-2"
:items="[
{ title: t('Home'), to: { name: 'root' } },
{ title: t('List of stores') },
]"
/>
<div> <div>
<!-- 👉 filters --> <!-- 👉 filters -->
<VCard <VCard

View File

@ -238,6 +238,13 @@ const exportEXCEL = () => {
</script> </script>
<template> <template>
<VBreadcrumbs
class="px-0 py-2"
:items="[
{ title: t('Home'), to: { name: 'root' } },
{ title: t('Logs list') },
]"
/>
<div> <div>
<!-- 👉 Statistics Widgets --> <!-- 👉 Statistics Widgets -->
<VCard class="mb-6"> <VCard class="mb-6">

View File

@ -6,6 +6,7 @@
"OBI": "OBI", "OBI": "OBI",
"Dotsoft": "Dotsoft", "Dotsoft": "Dotsoft",
"List of stores": "قائمة المتاجر", "List of stores": "قائمة المتاجر",
"Store visualization": "عرض المتاجر",
"BL not sent list": "قائمة البيانات الخارجية غير المرسلة", "BL not sent list": "قائمة البيانات الخارجية غير المرسلة",
"BL not sent": "بيانات البيانات الخارجية غير المرسلة", "BL not sent": "بيانات البيانات الخارجية غير المرسلة",
"ST ID": "ST ID", "ST ID": "ST ID",

View File

@ -6,6 +6,7 @@
"OBI": "OBI", "OBI": "OBI",
"Dotsoft": "Dotsoft", "Dotsoft": "Dotsoft",
"List of stores": "List of stores", "List of stores": "List of stores",
"Store visualization": "Store visualization",
"BL not sent list": "BL not sent list", "BL not sent list": "BL not sent list",
"BL not sent": "BL not sent", "BL not sent": "BL not sent",
"ST ID": "ST ID", "ST ID": "ST ID",

View File

@ -6,8 +6,9 @@
"OBI": "OBI", "OBI": "OBI",
"Dotsoft": "Dotsoft", "Dotsoft": "Dotsoft",
"List of stores": "Liste des boutiques", "List of stores": "Liste des boutiques",
"BL not sent list": "Liste des BL non envoyés", "Store visualization": "Visualisation boutique",
"BL not sent": "BL non envoyé", "BL not sent list": "Liste BL non envoyés",
"BL not sent": "BL non envoyés",
"ST ID": "ID ST", "ST ID": "ID ST",
"Exp ID": "ID Exp", "Exp ID": "ID Exp",
"BL ID": "ID BL", "BL ID": "ID BL",