From 425ba36ef50d278220505e6f6ae2772874d229fa Mon Sep 17 00:00:00 2001 From: Daria Golova Date: Wed, 17 May 2023 11:22:45 +0300 Subject: [PATCH] =?UTF-8?q?WIP=20=D0=97=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=BB=D0=B0=20=D1=87=D0=B8=D1=81=D0=BB=D0=BE=D0=B2=D0=BE=D0=B9?= =?UTF-8?q?=20=D0=B8=D0=BD=D0=BF=D1=83=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Forms/IndexForm.vue | 16 ++++++++++------ .../Forms/MedicalFormTag.vue | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/IndexForm.vue b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/IndexForm.vue index 3c406a4..e7e7c24 100644 --- a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/IndexForm.vue +++ b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/IndexForm.vue @@ -20,13 +20,13 @@ span.text-sm.line-height.blue-color {{ item?.label ? item.label : item }} .alert-icon.flex.justify-center.items-center.rounded.w-6.h-6(v-if="item?.icon") q-icon(name="warning_amber", size="13") - base-input( + base-input-number( v-else, v-model="modelValue", outlined, - type="number", - :rule="data?.rules", - step="any", + :step="0.1", + :max="10", + :min="0" ) .rounded.grey-background.py-3.px-4.blue-color span.font-bold.text-base.line-height Справка @@ -40,13 +40,17 @@