refactor(03): add q-mb-xl

This commit is contained in:
Net 2024-08-19 10:50:46 +07:00
parent b98a5a9efe
commit b2f2fbedbb

View file

@ -1940,7 +1940,7 @@ const emptyCreateDialog = ref(false);
> >
<template v-if="employeeFormState.currentTab === 'personalInfo'"> <template v-if="employeeFormState.currentTab === 'personalInfo'">
<div <div
class="q-pt-sm row" class="surface-1 rounded q-pt-sm row"
style="position: absolute; z-index: 999; right: 4%" style="position: absolute; z-index: 999; right: 4%"
> >
<UndoButton <UndoButton
@ -2005,6 +2005,7 @@ const emptyCreateDialog = ref(false);
v-model:nrc-no="currentFromDataEmployee.nrcNo" v-model:nrc-no="currentFromDataEmployee.nrcNo"
v-model:code="currentFromDataEmployee.code" v-model:code="currentFromDataEmployee.code"
@filter-owner-branch="employeeFormStore.employeeFilterOwnerBranch" @filter-owner-branch="employeeFormStore.employeeFilterOwnerBranch"
class="q-mb-xl"
/> />
<FormPerson <FormPerson
id="form-personal" id="form-personal"
@ -2037,6 +2038,7 @@ const emptyCreateDialog = ref(false);
v-model:zipCode="currentFromDataEmployee.zipCode" v-model:zipCode="currentFromDataEmployee.zipCode"
employee employee
dense dense
class="q-mb-xl"
/> />
<FormEmployeePassport <FormEmployeePassport
@ -2063,6 +2065,7 @@ const emptyCreateDialog = ref(false);
v-model:previous-passport-reference=" v-model:previous-passport-reference="
currentFromDataEmployee.previousPassportReference currentFromDataEmployee.previousPassportReference
" "
class="q-mb-xl"
/> />
<FormEmployeeVisa <FormEmployeeVisa
@ -2083,6 +2086,7 @@ const emptyCreateDialog = ref(false);
" "
v-model:tm6-number="currentFromDataEmployee.tm6Number" v-model:tm6-number="currentFromDataEmployee.tm6Number"
v-model:entry-date="currentFromDataEmployee.entryDate" v-model:entry-date="currentFromDataEmployee.entryDate"
class="q-mb-xl"
/> />
</template> </template>
@ -2427,7 +2431,7 @@ const emptyCreateDialog = ref(false);
> >
<template v-if="employeeFormState.currentTab === 'personalInfo'"> <template v-if="employeeFormState.currentTab === 'personalInfo'">
<div <div
class="q-pt-sm row" class="surface-1 rounded q-pt-sm row"
style="position: absolute; z-index: 999; right: 4%" style="position: absolute; z-index: 999; right: 4%"
> >
<UndoButton <UndoButton
@ -2486,6 +2490,7 @@ const emptyCreateDialog = ref(false);
v-model:nrc-no="currentFromDataEmployee.nrcNo" v-model:nrc-no="currentFromDataEmployee.nrcNo"
v-model:code="currentFromDataEmployee.code" v-model:code="currentFromDataEmployee.code"
@filter-owner-branch="employeeFormStore.employeeFilterOwnerBranch" @filter-owner-branch="employeeFormStore.employeeFilterOwnerBranch"
class="q-mb-xl"
/> />
<FormPerson <FormPerson
id="drawer-form-personal" id="drawer-form-personal"
@ -2503,6 +2508,7 @@ const emptyCreateDialog = ref(false);
v-model:gender="currentFromDataEmployee.gender" v-model:gender="currentFromDataEmployee.gender"
v-model:birthDate="currentFromDataEmployee.dateOfBirth" v-model:birthDate="currentFromDataEmployee.dateOfBirth"
v-model:nationality="currentFromDataEmployee.nationality" v-model:nationality="currentFromDataEmployee.nationality"
class="q-mb-xl"
/> />
<AddressForm <AddressForm
id="drawer-form-personal-address" id="drawer-form-personal-address"
@ -2516,6 +2522,7 @@ const emptyCreateDialog = ref(false);
:readonly="!employeeFormState.isEmployeeEdit" :readonly="!employeeFormState.isEmployeeEdit"
prefix-id="drawer-info-personnel" prefix-id="drawer-info-personnel"
dense dense
class="q-mb-xl"
/> />
<FormEmployeePassport <FormEmployeePassport
prefix-id="drawer-info-employee" prefix-id="drawer-info-employee"
@ -2542,6 +2549,7 @@ const emptyCreateDialog = ref(false);
v-model:previous-passport-reference=" v-model:previous-passport-reference="
currentFromDataEmployee.previousPassportReference currentFromDataEmployee.previousPassportReference
" "
class="q-mb-xl"
/> />
<FormEmployeeVisa <FormEmployeeVisa
prefix-id="drawer-info-employee" prefix-id="drawer-info-employee"
@ -2562,6 +2570,7 @@ const emptyCreateDialog = ref(false);
" "
v-model:tm6-number="currentFromDataEmployee.tm6Number" v-model:tm6-number="currentFromDataEmployee.tm6Number"
v-model:entry-date="currentFromDataEmployee.entryDate" v-model:entry-date="currentFromDataEmployee.entryDate"
class="q-mb-xl"
/> />
</template> </template>