refactor: 03 Employee => enhance responsive layout for employee management forms

This commit is contained in:
puriphatt 2025-01-27 15:43:05 +07:00
parent a4bc6e4884
commit debfa874f3
8 changed files with 210 additions and 49 deletions

View file

@ -289,7 +289,7 @@ defineEmits<{
hide-bottom-space
:readonly="readonly"
:disable="!readonly"
class="col-3"
class="col-md-3 col-12"
:label="$t('customerEmployee.form.employeeCode')"
v-model="code"
/>
@ -301,7 +301,7 @@ defineEmits<{
outlined
hide-bottom-space
:readonly="readonly"
class="col-6"
class="col-md-6 col-12"
:label="$t('customerEmployee.form.nrcNo')"
:model-value="nrcNo"
@update:model-value="(v) => (typeof v === 'string' ? (nrcNo = v) : '')"