From 9459f4ee99cac528533b3e219d5cb22f85485e87 Mon Sep 17 00:00:00 2001 From: DwCay Date: Wed, 5 Jul 2023 15:02:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B1=D0=B0=D0=B3=D0=B8=20=D1=81=20=D0=B4=D0=BE=D0=B1?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC=20=D1=81=D0=BD?= =?UTF-8?q?=D0=B8=D0=BC=D0=BA=D0=BE=D0=B2=20=D0=B8=20=D0=BF=D0=BE=D0=B4?= =?UTF-8?q?=D0=B2=D0=B8=D0=B6=D0=BD=D0=BE=D1=81=D1=82=D1=8C=D1=8E=20=D0=B7?= =?UTF-8?q?=D1=83=D0=B1=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/base/BaseDownload.vue | 11 ++++++++--- .../components/HealthState/HealthStateCreateModal.vue | 6 ++++-- src/pages/newMedicalCard/utils/medicalConfig.js | 4 ++-- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/components/base/BaseDownload.vue b/src/components/base/BaseDownload.vue index 550232d..26168f5 100644 --- a/src/components/base/BaseDownload.vue +++ b/src/components/base/BaseDownload.vue @@ -2,13 +2,12 @@ label.download.flex.cursor-pointer.relative.items-center.justify-center.rounded( :style="{height: `${height}px`, width: width ? `${width}px` : '100%'}" ) - base-input( + base-input.w-full.h-full( @change="(e) => addNewFiles(e)", doc, type="file", :accept="getAccept", - id="download", - :style="{zIndex: '-1'}", + id="upload" borderless, :multiple="multiple" ) @@ -92,6 +91,12 @@ export default {