From 32dc0cf28ad243907c210368c4c1f632ee386588 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Thu, 6 Jun 2024 17:08:30 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20=20type=20?= =?UTF-8?q?=20=E0=B9=83=E0=B8=AB=E0=B9=89=E0=B8=95=E0=B8=A3=E0=B8=87?= =?UTF-8?q?=E0=B8=81=E0=B8=B1=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TabComponent.vue | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/components/TabComponent.vue b/src/components/TabComponent.vue index a5dfa3e7..e65128f5 100644 --- a/src/components/TabComponent.vue +++ b/src/components/TabComponent.vue @@ -13,24 +13,31 @@ const index = ref(0); function addData() { index.value++; customerBranch.value.push({ - status: 'CREATED', - legalPersonNo: '', - taxNo: '', - name: '', - nameEN: '', - addressEN: '', address: '', + addressEN: '', + provinceId: '', + districtId: '', + subDistrictId: '', zipCode: '', email: '', telephoneNo: '', - longitude: '', - latitude: '', + name: '', + status: 'CREATED', + taxNo: '', + nameEN: '', + legalPersonNo: '', registerName: '', registerDate: null, authorizedCapital: '', - subDistrictId: '', - districtId: '', - provinceId: '', + employmentOffice: '', + bussinessType: '', + bussinessTypeEN: '', + jobPosition: '', + jobPositionEN: '', + jobDescription: '', + saleEmployee: '', + payDate: '', + wageDate: '', }); tab.value = customerBranch.value.length - 1;