WIP Добавил валидации на формах мед карты и отправку данных с формы

This commit is contained in:
DwCay
2023-02-28 19:33:07 +03:00
parent 8f07d76fa2
commit 08a6cf59c1
6 changed files with 214 additions and 48 deletions

View File

@@ -3,10 +3,10 @@
span.title-section.font-semibold.text-xs(v-if="field.title" ) {{field.title}}
.flex.items-center(v-if="field.type === 'text' || field.type === 'textarea'" class="gap-x-2.5")
span.w-4.icon(v-if="field.icon" :class="field.icon")
base-input(v-model="data[field.label]" :with-icon="field.copy" outlined)
base-input(v-model="data[field.label]" :mask="mask" :with-icon="field.copy" outlined)
.flex.items-center(v-if="field.copy && data[field.label]")
.copy.icon-copy.cursor-pointer(@click="() => copyValue(data[field.label])")
base-input(v-if="field.type === 'date'" type="date" v-model="data[field.label]" outlined)
base-input(v-if="field.type === 'date'" :mask="mask" type="date" v-model="data[field.label]" outlined)
base-radio-buttons-group(v-if="field.type === 'radio'" v-model="data[field.label]" :items="field.items" size="xs" :column-gap="14" direction-column)
</template>
@@ -20,6 +20,7 @@ export default {
value: String,
field: Object,
data: Object,
mask: String,
},
data() {
return {