0
0
Fork 0

refs #7396 add fiDueDate, machine

This commit is contained in:
Carlos Satorres 2024-05-17 13:19:59 +02:00
parent 475f0eda48
commit d7e3303d68
1 changed files with 11 additions and 2 deletions

View File

@ -2,7 +2,7 @@
import { ref } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import VnInputDate from 'src/components/common/VnInputDate.vue';
import FetchData from 'components/FetchData.vue';
import FormModel from 'src/components/FormModel.vue';
import VnRow from 'components/ui/VnRow.vue';
@ -78,7 +78,7 @@ const maritalStatus = [
<VnInput :label="t('Name')" clearable v-model="data.firstName" />
<VnInput :label="t('Last name')" clearable v-model="data.lastName" />
</VnRow>
{{ data }}
<VnRow class="row q-gutter-md q-mb-md">
<VnInput v-model="data.phone" :label="t('Business phone')" clearable />
<VnInput
@ -147,6 +147,14 @@ const maritalStatus = [
clearable
/>
</VnRow>
<VnRow class="row q-gutter-md q-mb-md">
<VnInputDate :label="t('fiDueDate')" v-model="data.fiDueDate" />
<QCheckbox
size="sm"
v-model="data.hasMachineryAuthorized"
:label="t(`hasMachineryAuthorized`)"
/>
</VnRow>
</template>
</FormModel>
</template>
@ -165,4 +173,5 @@ es:
Education level: Nivel educación
SSN: NSS
Locker: Taquilla
fiDueDate: Fecha de caducidad del DNI
</i18n>