[WIP] Добавил отображение состояния и подвижности зубов

This commit is contained in:
DwCay
2023-05-29 18:09:01 +03:00
parent ff6678af09
commit e11a628c78
8 changed files with 808 additions and 26 deletions

View File

@@ -1,6 +1,7 @@
import { fetchWrapper } from "@/shared/fetchWrapper";
import { genderOptions } from "@/pages/newMedicalCard/utils/medicalConfig";
import { getConfidantObject } from "@/pages/newMedicalCard/utils/gettersObjects";
import toothFormula from "@/store/modules/toothFormula";
const state = () => ({
medicalCard: {},
@@ -305,7 +306,8 @@ const getters = {
},
},
toothFormula: {
lacticBite: true,
lacticBite: toothFormula.state.lacticBite,
formula: toothFormula.state.formula,
},
};
},
@@ -334,7 +336,8 @@ const getters = {
},
disease: null,
toothFormula: {
lacticBite: false,
lacticBite: toothFormula.stateInit.lacticBite,
formula: toothFormula.stateInit.formula,
},
};
},