From f9d9b83792d03405d8cd5715d01c17e2958a0717 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Fri, 19 Apr 2024 11:47:03 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E0=B8=95=E0=B8=A3=E0=B8=A7=E0=B8=88?= =?UTF-8?q?=E0=B8=AA=E0=B8=AD=E0=B8=9A=E0=B8=A7=E0=B9=88=E0=B8=B2=E0=B9=81?= =?UTF-8?q?=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=20=E0=B8=AB=E0=B8=A3?= =?UTF-8?q?=E0=B8=B7=E0=B8=AD=20=E0=B8=94=E0=B8=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CardBranchComponent.vue | 7 ++ .../FormBranchContact.vue | 20 ++++-- .../FormBranchInformation.vue | 69 ++++++++++++++++--- .../01_branch-management/FormImage.vue | 4 +- .../01_branch-management/FormLocation.vue | 6 +- .../01_branch-management/FormQr.vue | 3 +- src/components/FormDialog.vue | 3 + 7 files changed, 92 insertions(+), 20 deletions(-) create mode 100644 src/components/01_branch-management/CardBranchComponent.vue diff --git a/src/components/01_branch-management/CardBranchComponent.vue b/src/components/01_branch-management/CardBranchComponent.vue new file mode 100644 index 00000000..8442061c --- /dev/null +++ b/src/components/01_branch-management/CardBranchComponent.vue @@ -0,0 +1,7 @@ + + + diff --git a/src/components/01_branch-management/FormBranchContact.vue b/src/components/01_branch-management/FormBranchContact.vue index 161efce6..be253b86 100644 --- a/src/components/01_branch-management/FormBranchContact.vue +++ b/src/components/01_branch-management/FormBranchContact.vue @@ -21,7 +21,9 @@ defineProps<{
const code = defineModel('code'); +const codeSubBranch = defineModel('codeSubBranch'); const taxNo = defineModel('taxNo'); const name = defineModel('name'); const nameEN = defineModel('nameEN'); +const typeBranch = defineModel('typeBranch'); defineProps<{ title?: string; @@ -10,6 +12,7 @@ defineProps<{ outlined?: boolean; readonly?: boolean; separator?: boolean; + view?: boolean; }>();