From 67b3f5be899ed4fc81a1cd34ac652b02749042f2 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Fri, 4 Oct 2024 13:25:17 +0700 Subject: [PATCH] refactor: show expiratio date --- .../03_customer-management/ExpiratioDate.vue | 40 +++++++++++++++++++ src/pages/03_customer-management/MainPage.vue | 9 +++++ 2 files changed, 49 insertions(+) create mode 100644 src/components/03_customer-management/ExpiratioDate.vue diff --git a/src/components/03_customer-management/ExpiratioDate.vue b/src/components/03_customer-management/ExpiratioDate.vue new file mode 100644 index 00000000..5c5677c7 --- /dev/null +++ b/src/components/03_customer-management/ExpiratioDate.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index ae06c29a..cb692ba3 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -28,6 +28,7 @@ import { UndoButton, } from 'components/button'; +import ExpiratioDate from 'components/03_customer-management/ExpiratioDate.vue'; import { AddressForm } from 'components/form'; import BranchCard from 'src/components/01_branch-management/BranchCard.vue'; import ItemCard from 'src/components/ItemCard.vue'; @@ -2907,6 +2908,10 @@ const emptyCreateDialog = ref(false);