fix: moo, soi, street
This commit is contained in:
parent
234b03c7fa
commit
db1e57fca0
1 changed files with 14 additions and 0 deletions
|
|
@ -371,6 +371,7 @@ watch(districtId, fetchSubDistrict);
|
||||||
:label="$t('form.moo')"
|
:label="$t('form.moo')"
|
||||||
:readonly="readonly || sameWithEmployer"
|
:readonly="readonly || sameWithEmployer"
|
||||||
:for="`${prefixId}-${indexId !== undefined ? `input-moo-${indexId}` : 'input-moo'}`"
|
:for="`${prefixId}-${indexId !== undefined ? `input-moo-${indexId}` : 'input-moo'}`"
|
||||||
|
@update:model-value="(v) => (typeof v === 'string' ? (moo = v) : '')"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
outlined
|
outlined
|
||||||
|
|
@ -381,6 +382,7 @@ watch(districtId, fetchSubDistrict);
|
||||||
:label="$t('form.soi')"
|
:label="$t('form.soi')"
|
||||||
:readonly="readonly || sameWithEmployer"
|
:readonly="readonly || sameWithEmployer"
|
||||||
:for="`${prefixId}-${indexId !== undefined ? `input-soi-${indexId}` : 'input-soi'}`"
|
:for="`${prefixId}-${indexId !== undefined ? `input-soi-${indexId}` : 'input-soi'}`"
|
||||||
|
@update:model-value="(v) => (typeof v === 'string' ? (soi = v) : '')"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
outlined
|
outlined
|
||||||
|
|
@ -391,6 +393,9 @@ watch(districtId, fetchSubDistrict);
|
||||||
:label="$t('form.street')"
|
:label="$t('form.street')"
|
||||||
:readonly="readonly || sameWithEmployer"
|
:readonly="readonly || sameWithEmployer"
|
||||||
:for="`${prefixId}-${indexId !== undefined ? `input-street-${indexId}` : 'input-street'}`"
|
:for="`${prefixId}-${indexId !== undefined ? `input-street-${indexId}` : 'input-street'}`"
|
||||||
|
@update:model-value="
|
||||||
|
(v) => (typeof v === 'string' ? (street = v) : '')
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
<q-select
|
<q-select
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
|
|
@ -599,6 +604,9 @@ watch(districtId, fetchSubDistrict);
|
||||||
label="Moo"
|
label="Moo"
|
||||||
:readonly="readonly || sameWithEmployer"
|
:readonly="readonly || sameWithEmployer"
|
||||||
:for="`${prefixId}-${indexId !== undefined ? `input-moo-${indexId}` : 'input-moo'}`"
|
:for="`${prefixId}-${indexId !== undefined ? `input-moo-${indexId}` : 'input-moo'}`"
|
||||||
|
@update:model-value="
|
||||||
|
(v) => (typeof v === 'string' ? (mooEN = v) : '')
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
outlined
|
outlined
|
||||||
|
|
@ -609,6 +617,9 @@ watch(districtId, fetchSubDistrict);
|
||||||
label="Soi"
|
label="Soi"
|
||||||
:readonly="readonly || sameWithEmployer"
|
:readonly="readonly || sameWithEmployer"
|
||||||
:for="`${prefixId}-${indexId !== undefined ? `input-soi-${indexId}` : 'input-soi'}`"
|
:for="`${prefixId}-${indexId !== undefined ? `input-soi-${indexId}` : 'input-soi'}`"
|
||||||
|
@update:model-value="
|
||||||
|
(v) => (typeof v === 'string' ? (soiEN = v) : '')
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
outlined
|
outlined
|
||||||
|
|
@ -619,6 +630,9 @@ watch(districtId, fetchSubDistrict);
|
||||||
label="Street"
|
label="Street"
|
||||||
:readonly="readonly || sameWithEmployer"
|
:readonly="readonly || sameWithEmployer"
|
||||||
:for="`${prefixId}-${indexId !== undefined ? `input-street-${indexId}` : 'input-street'}`"
|
:for="`${prefixId}-${indexId !== undefined ? `input-street-${indexId}` : 'input-street'}`"
|
||||||
|
@update:model-value="
|
||||||
|
(v) => (typeof v === 'string' ? (streetEN = v) : '')
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
<q-select
|
<q-select
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue