From d9cdd428ddb63473e4aeb92877500f16ad3ea66f Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Tue, 11 Jun 2024 12:54:19 +0700 Subject: [PATCH] =?UTF-8?q?=20feat:=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=E0=B8=AA=E0=B8=B5=E0=B9=83=E0=B8=AB=E0=B9=89=E0=B8=95?= =?UTF-8?q?=E0=B8=B2=E0=B8=A3=E0=B8=B2=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BranchCardCustomer.vue | 208 +++++++++++++----- 1 file changed, 154 insertions(+), 54 deletions(-) diff --git a/src/components/03_customer-management/BranchCardCustomer.vue b/src/components/03_customer-management/BranchCardCustomer.vue index 3f5926ae..1a45c605 100644 --- a/src/components/03_customer-management/BranchCardCustomer.vue +++ b/src/components/03_customer-management/BranchCardCustomer.vue @@ -5,69 +5,169 @@ import { CustomerBranch } from 'src/stores/customer/types'; withDefaults( defineProps<{ - data: CustomerBranch; + inactive?: boolean; + color?: 'none' | 'CORP' | 'PERS'; + + metadata?: unknown; + badgeField?: string[]; + fieldSelected?: string[]; + footer?: boolean; + + data: { + customerBranchFormTab: number; + branchName: string; + address: string; + telephone: string; + businessTypePure: string; + status: string; + totalEmployee: number; + }; }>(), {}, ); - +