From d301f5c385c1955157b2d397bee95394d49a0e17 Mon Sep 17 00:00:00 2001 From: Net Date: Tue, 20 Aug 2024 18:01:38 +0700 Subject: [PATCH] refactor: by value --- src/pages/03_customer-management/MainPage.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 9faf81a0..7e7a7135 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -1692,12 +1692,15 @@ const emptyCreateDialog = ref(false); " :customer-type="customerFormData.customerType" v-model:code="customerFormData.code" - v-model:tax-no="customerFormData.taxNo" - v-model:customer-name="customerFormData.customerName" - v-model:customer-name-en="customerFormData.customerNameEN" - v-model:person-name="customerFormData.personName" v-model:registered-branch-id="customerFormData.registeredBranchId" v-model:branch-options="registerAbleBranchOption" + v-model:first-name="customerFormData.firstName" + v-model:last-name="customerFormData.lastName" + v-model:first-name-en="customerFormData.firstNameEN" + v-model:last-name-en="customerFormData.lastNameEN" + v-model:name-prefix="customerFormData.namePrefix" + v-model:gender="customerFormData.gender" + v-model:birth-date="customerFormData.birthDate" />