[WIP] Фикс добалвения фото клиента

This commit is contained in:
megavrilinvv
2022-12-12 15:30:12 +03:00
parent 8c2ded8758
commit 787ce1ed2b
4 changed files with 6 additions and 6 deletions

View File

@@ -370,7 +370,6 @@ export default {
changeOpenModal() { changeOpenModal() {
this.showModal = true; this.showModal = true;
this.showPopup = false; this.showPopup = false;
this.image = [addImageIcon];
}, },
changeOpenPopup() { changeOpenPopup() {
this.showPopup = true; this.showPopup = true;

View File

@@ -25,7 +25,7 @@
@delete-client="transmitDeleteClient" @delete-client="transmitDeleteClient"
) )
.dots.flex.justify-center.items-center(v-if="!rowOverlay") .dots.flex.justify-center.items-center(v-if="!rowOverlay")
.flex.pl-5.z-10(v-if="isOpenChange") .flex.z-10(v-if="isOpenChange", class="pl-[10px]")
base-button( base-button(
@click="closeChangeData", @click="closeChangeData",
confirm, confirm,

View File

@@ -1,11 +1,12 @@
<template lang="pug"> <template lang="pug">
.flex.box-border.px-4.items-center.w-full.text-sm(:style="{ minWidth : width + 'px', maxWidth : width + 'px' }") .flex.box-border.px-4.items-center.w-full.text-sm(
:style="{ minWidth : width + 'px', maxWidth : width + 'px' }"
)
span(v-if="!isOpenChange") {{value.age ? value.age.split("-").reverse().join(".") : ""}} span(v-if="!isOpenChange") {{value.age ? value.age.split("-").reverse().join(".") : ""}}
base-input-date.input.max-h-10( base-input-date.input.max-h-10(
v-if="isOpenChange", v-if="isOpenChange",
@click.stop, @click.stop,
v-model:value="value.age", v-model:value="value.age"
:width-input="124"
) )
</template> </template>

View File

@@ -43,5 +43,5 @@ export default {
background-color: var(--font-grey-color) background-color: var(--font-grey-color)
color: var(--font-dark-blue-color) color: var(--font-dark-blue-color)
.open-change .open-change
padding-left: 52px padding-left: 36px
</style> </style>