From 94ac479e2fe7190ab25a1fab33608e8b292fbc27 Mon Sep 17 00:00:00 2001 From: DwCay Date: Mon, 5 Jun 2023 11:15:55 +0300 Subject: [PATCH] =?UTF-8?q?[WIP]=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80=20=D0=B7=D1=83?= =?UTF-8?q?=D0=B1=D0=BD=D0=BE=D0=B9=20=D1=84=D0=BE=D1=80=D0=BC=D1=83=D0=BB?= =?UTF-8?q?=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ToothFormula/DentalConditionForm.vue | 13 +-- .../Forms/ToothFormula/FormulaFilter.vue | 91 +++++++++++++++++++ .../ToothFormula/ToothConditionsInfo.vue | 5 +- .../Forms/ToothFormula/ToothFormulaCell.vue | 13 ++- .../Forms/ToothFormula/ToothFormulaForm.vue | 5 +- .../newMedicalCard/utils/gettersObjects.js | 11 ++- .../newMedicalCard/utils/medicalConfig.js | 7 ++ 7 files changed, 123 insertions(+), 22 deletions(-) create mode 100644 src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/FormulaFilter.vue diff --git a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue index a7859a5..8d967ed 100644 --- a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue +++ b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue @@ -63,7 +63,7 @@ + + diff --git a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/ToothConditionsInfo.vue b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/ToothConditionsInfo.vue index ed8efae..e575447 100644 --- a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/ToothConditionsInfo.vue +++ b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/ToothConditionsInfo.vue @@ -6,8 +6,8 @@ ) .flex.flex-col.p-4.gap-15px.text-smm.font-medium .general.w-full.flex.justify-start.pb-15px - span.opacity-60(:style="{'color': 'var(--font-dark-blue-color)'}") {{`${general} – ${config[general]}`}} - span(v-for="condition in conditions") {{`${condition} – ${config[condition]}`}} + span.opacity-60(:style="{'color': 'var(--font-dark-blue-color)'}") {{`${conditions[0]} – ${config[conditions[0]]}`}} + span(v-for="condition in conditions.slice(1)") {{`${condition} – ${config[condition]}`}}