99 lines
2.8 KiB
Vue
99 lines
2.8 KiB
Vue
<template lang="pug">
|
|
.wrapper-addresses.flex.flex-col.flex-auto.h-full.gap-y-8.justify-between
|
|
.flex.flex-col.gap-y-6.px-4
|
|
base-input.input-info(
|
|
v-model="addresses.full_address",
|
|
placeholder="Введите адрес целиком",
|
|
label="Полный адрес"
|
|
)
|
|
.flex.items-center.justify-center.relative
|
|
.line.absolute
|
|
span.text-sm.separator.px-2 или
|
|
.grid.grid-cols-2.gap-y-6.gap-x-4
|
|
base-input.input-info(
|
|
disabled,
|
|
placeholder="Введите город",
|
|
v-model="addresses.city",
|
|
label="Город"
|
|
)
|
|
base-input.input-info(
|
|
disabled,
|
|
placeholder="Введите область",
|
|
v-model="addresses.region",
|
|
label="Область"
|
|
)
|
|
base-input.input-info(
|
|
disabled,
|
|
placeholder="Введите улицу",
|
|
v-model="addresses.street",
|
|
label="Введите улицу"
|
|
)
|
|
base-input.input-info(
|
|
disabled,
|
|
placeholder="Номер дома",
|
|
v-model="addresses.house_number",
|
|
label="Дом"
|
|
)
|
|
base-input.input-info(
|
|
disabled,
|
|
placeholder="Номер квартиры",
|
|
v-model="addresses.apartment_number",
|
|
label="Квартира"
|
|
)
|
|
base-input.input-info(
|
|
disabled,
|
|
placeholder="000000",
|
|
v-mask="'######'",
|
|
v-model="addresses.zip_code",
|
|
label="Индекс"
|
|
)
|
|
.px-4
|
|
base-button(@click="saveClient" :size="40")
|
|
span.font-semibold Создать клиента
|
|
</template>
|
|
|
|
<script>
|
|
import BaseButton from "@/components/base/BaseButton";
|
|
import BaseInput from "@/components/base/BaseInput";
|
|
import BaseCustomSelect from "@/components/base/BaseCustomSelect";
|
|
import { mask } from "vue-the-mask";
|
|
export default {
|
|
name: "FormCreateAddresses",
|
|
components: { BaseInput, BaseButton, BaseCustomSelect },
|
|
props: {
|
|
addresses: Object,
|
|
saveClient: Function,
|
|
saveFile: Function,
|
|
},
|
|
directives: { mask },
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
.wrapper-addresses
|
|
min-height: 443px
|
|
max-height: 443px
|
|
overflow-y: auto
|
|
color: var(--font-grey-color)
|
|
&::-webkit-scrollbar
|
|
width: 4px
|
|
&::-webkit-scrollbar-track
|
|
background-color: rgba(211, 212, 220, 0.5)
|
|
border-radius: 8px
|
|
&::-webkit-scrollbar-thumb
|
|
border-radius: 8px
|
|
background-color: var(--btn-blue-color)
|
|
.input-info
|
|
color: var(--font-dark-blue-color)
|
|
.title-info
|
|
color: var(--font-dark-blue-color)
|
|
.line
|
|
width: 570px
|
|
height: 1px
|
|
background-color: var(--border-light-grey-color)
|
|
z-index: -1
|
|
.separator
|
|
color: var(--font-dark-blue-color)
|
|
background-color: var(--default-white)
|
|
</style>
|