[WIP] Заменил инпуты с датой на baseInput, исправил стили, фикс станицы логина
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
.flex.flex-col.gap-y-6
|
||||
span.font-bold Паспортные данные
|
||||
.flex.flex-col.gap-y-6
|
||||
base-input.input(
|
||||
base-input(
|
||||
label="Серия и номер",
|
||||
placeholder="0000 000000",
|
||||
v-model="clientDetail.identity_documents.number"
|
||||
@@ -14,12 +14,13 @@
|
||||
v-model="clientDetail.identity_documents.issued_by_org"
|
||||
)
|
||||
.flex.gap-x-4
|
||||
base-input.input(
|
||||
base-input(
|
||||
label="Код подразделения",
|
||||
placeholder="000-000",
|
||||
v-model="clientDetail.identity_documents.issued_by_org_code"
|
||||
)
|
||||
base-input-date.input(
|
||||
base-input(
|
||||
type="date",
|
||||
label="Дата выдачи",
|
||||
v-model="clientDetail.identity_documents.issued_by_date"
|
||||
)
|
||||
@@ -27,21 +28,15 @@
|
||||
|
||||
<script>
|
||||
import BaseInput from "@/components/base/BaseInput";
|
||||
import BaseInputDate from "@/components/base/BaseInputDate";
|
||||
import BaseSelect from "@/components/base/BaseSelect";
|
||||
import BaseButton from "@/components/base/BaseButton";
|
||||
|
||||
export default {
|
||||
name: "MedicalIdentityDocuments",
|
||||
components: { BaseInput, BaseInputDate, BaseSelect, BaseButton },
|
||||
components: { BaseInput, BaseSelect, BaseButton },
|
||||
props: {
|
||||
changeIdentityDoc: Function,
|
||||
clientDetail: Object,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="sass" scoped>
|
||||
.input
|
||||
width: 277px
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user