From 1304a1d4255164c62382de68a93d6356b9c73631 Mon Sep 17 00:00:00 2001 From: DwCay Date: Thu, 15 Jun 2023 18:28:26 +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=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BE=D1=82=D1=81=D1=83=D1=82=D1=81=D1=82=D0=B2?= =?UTF-8?q?=D1=83=D1=8E=D1=89=D0=B8=D1=85=20=D0=B7=D1=83=D0=B1=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ToothFormula/DentalConditionForm.vue | 4 +- .../Forms/ToothFormula/DetailedToothSvg.vue | 122 +++++++----- .../Forms/ToothFormula/ToothFormulaCell.vue | 148 +++++++-------- .../Forms/ToothFormula/ToothFormulaTable.vue | 3 +- .../Forms/ToothFormula/tooths/IncorsTooth.vue | 108 ++++++----- .../Forms/ToothFormula/tooths/MolarsTooth.vue | 179 +++++++++++------- .../tooths/PreMolarsFangsTooth.vue | 108 ++++++----- .../newMedicalCard/utils/medicalConfig.js | 2 +- 8 files changed, 395 insertions(+), 279 deletions(-) diff --git a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue index 1075ae8..36292e4 100644 --- a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue +++ b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DentalConditionForm.vue @@ -7,7 +7,7 @@ :tooth-config="cellConfig", :jaw-position="jawPosition", :oversized="20", - :view="data.general === 'ИЗ' ? 'artificial': 'native'", + :view="data.general === 'И' ? 'artificial': 'native'", :data="data", editable ) @@ -15,7 +15,7 @@ part-tooth="crown", :click-part="clickPart", :oversized="10", - :view="data.general === 'ИЗ' ? 'artificial': 'native'", + :view="data.general === 'И' ? 'artificial': 'native'", :data="data", editable ) diff --git a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DetailedToothSvg.vue b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DetailedToothSvg.vue index e5f75d6..a37266c 100644 --- a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DetailedToothSvg.vue +++ b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/ToothFormula/DetailedToothSvg.vue @@ -1,5 +1,5 @@