-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fea2fe1
commit f3bd0f5
Showing
7 changed files
with
129 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
<template> | ||
<div class="bg-white p-2 rounded-md shadow-2xl my-3"> | ||
<h1 class="text-xl font-bold text-slate-700">Note de service Pointe-Noire : Objet</h1> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi nisi, rem reprehenderit itaque | ||
temporibus fuga ad accusamus distinctio corporis, iste non dolorem consectetur | ||
sapiente sunt, exercitationem voluptatibus tenetur natus ut? | ||
</p> | ||
<h1 class="text-xl font-bold text-slate-700">Note de service Pointe-Noire</h1> | ||
<p>Numéro Courrier : 14toto12momo2023</p> | ||
<p>Date de reception : 31/2/2058</p> | ||
<button class="bg-sky-700 text-white my-2 py-1 px-3 rounded-lg hover:bg-sky-600">Explorer</button> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import {createRouter, createWebHistory} from 'vue-router' | ||
|
||
import Dashboard from '../views/Dashboard.vue' | ||
import LoginPage from '../views/LoginPage.vue' | ||
import ReceiveCourrier from '../views/subpages/ReceiveCourrier.vue' | ||
import SenderCourrier from '../views/subpages/SenderCourrier.vue' | ||
import ArchiveCourrier from '../views/subpages/ArchiveCourrier.vue' | ||
|
||
|
||
const routes = [ | ||
{name:"Login", path:"/", component: LoginPage}, | ||
|
||
{name:"Dashboard", path:"/dashboard", component: Dashboard, children: [ | ||
{name:"Receiver", path:"/dashboard/receive_courrier", component: ReceiveCourrier}, | ||
{name:"Sender", path:"/dashboard/sender_courrier", component: SenderCourrier}, | ||
{name:"Archiver", path:"/dashboard/archive_courrier", component: ArchiveCourrier}, | ||
]}, | ||
] | ||
|
||
const router = createRouter({ | ||
routes, | ||
history: createWebHistory() | ||
}) | ||
|
||
export default router |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script setup> | ||
import CardCourrier from "../../components/CardCourrier.vue"; | ||
import DetailCourrier from "../../components/DetailCourrier.vue"; | ||
</script> | ||
|
||
<template> | ||
<div class="h-full w-full flex"> | ||
<div class="basis-2/4 overflow-auto p-2 w-full"> | ||
<div class="flex justify-center"> | ||
<span class="text-2xl font-medium text-slate-800">Archive Courrier</span> | ||
</div> | ||
<div v-for="i in 2" :key="i"> | ||
<CardCourrier/> | ||
</div> | ||
</div> | ||
|
||
<div class="basis-2/4 overflow-auto p-2 bg-white m-2 rounded-md shadow-2xl"> | ||
<DetailCourrier/> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script setup> | ||
import CardCourrier from "../../components/CardCourrier.vue"; | ||
import DetailCourrier from "../../components/DetailCourrier.vue"; | ||
</script> | ||
|
||
<template> | ||
<div class="h-full w-full flex"> | ||
<div class="basis-2/4 overflow-auto p-2 w-full"> | ||
<div class="flex justify-center"> | ||
<span class="text-2xl font-medium text-slate-800">Arrivé Courrier</span> | ||
</div> | ||
<div v-for="i in 4" :key="i"> | ||
<CardCourrier/> | ||
</div> | ||
</div> | ||
|
||
<div class="basis-2/4 overflow-auto p-2 bg-white m-2 rounded-md shadow-2xl"> | ||
<DetailCourrier/> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script setup> | ||
import CardCourrier from "../../components/CardCourrier.vue"; | ||
import DetailCourrier from "../../components/DetailCourrier.vue"; | ||
</script> | ||
|
||
<template> | ||
<div class="h-full w-full flex"> | ||
<div class="basis-2/4 overflow-auto p-2 w-full"> | ||
<div class="flex justify-center"> | ||
<span class="text-2xl font-medium text-slate-800">Départ Courrier</span> | ||
</div> | ||
<div v-for="i in 3" :key="i"> | ||
<CardCourrier/> | ||
</div> | ||
</div> | ||
|
||
<div class="basis-2/4 overflow-auto p-2 bg-white m-2 rounded-md shadow-2xl"> | ||
<DetailCourrier/> | ||
</div> | ||
</div> | ||
</template> |