From 28395b4f80cfe57633a1dece8b55ead2513b10d2 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Thu, 24 Apr 2025 14:25:03 +0700 Subject: [PATCH] refactor: edit name model --- src/components/03_customer-management/FormEmployeeVisa.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/03_customer-management/FormEmployeeVisa.vue b/src/components/03_customer-management/FormEmployeeVisa.vue index bba22dad..572d66a1 100644 --- a/src/components/03_customer-management/FormEmployeeVisa.vue +++ b/src/components/03_customer-management/FormEmployeeVisa.vue @@ -32,11 +32,11 @@ const entryCount = defineModel('entryCount'); const issuePlace = defineModel('issuePlace'); const issueCountry = defineModel('issueCountry'); const issueDate = defineModel('visaIssueDate'); -const type = defineModel('visaType'); +const type = defineModel('type'); const expireDate = defineModel('expireDate'); const remark = defineModel('remark'); const workerType = defineModel('workerType'); -const number = defineModel('visaNumber'); +const number = defineModel('number'); const calculatedVisaDate = computed(() => { if (!issueDate.value) return undefined;