diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 1bd925de..9127e3f7 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -213,7 +213,9 @@ const fieldDisplayEmployee = ref< const fieldSelected = ref< ( + | 'orderNumber' | 'customerName' + | 'businessTypePure' | 'type' | 'personName' | 'telephoneNo' @@ -228,7 +230,9 @@ const fieldSelected = ref< | 'action' )[] >([ + 'orderNumber', 'customerName', + 'businessTypePure', 'personName', 'telephoneNo', 'branchEmail', @@ -1793,6 +1797,7 @@ const emptyCreateDialog = ref(false); } employeeFormState.isEmployeeEdit = false; + employeeFormState.currentIndex = -1; await fetchListEmployee(); } @@ -1813,7 +1818,7 @@ const emptyCreateDialog = ref(false); } " > -