WIP Добавил в мед карту поле с таблицей Зубной формулы

This commit is contained in:
DwCay
2023-01-11 20:15:48 +03:00
parent 04b4fedc3c
commit f0181e924c
6 changed files with 332 additions and 4 deletions

View File

@@ -174,3 +174,251 @@ export const medicalDetailConfig = {
treatment_protocol: "Протокол лечения",
},
};
export const dentalСonditionMap = [
{
name: "К",
discription: "кариес",
},
{
name: "П",
discription: "пульпит",
},
{
name: "Пт",
discription: "периодонтит",
},
{
name: "Д",
discription: "дефект",
},
{
name: "Пл",
discription: "пломба",
},
{
name: "Ик",
discription: "искусственная коронка",
},
{
name: "Из",
discription: "искусственный зуб",
},
{
name: "В",
discription: "вкладка",
},
{
name: "И",
discription: "имплантат",
},
{
name: "Кз",
discription: "корень зуба",
},
{
name: "О",
discription: "отсутствующий зуб",
},
];
export const formulaDataMap = [
{
name: "upperJaw",
rowMap: [
{
label: "Подвижность",
name: "tooth_mobility",
},
{
label: "Cостояние зубов",
name: "dental_condition",
},
{
label: "Верхняя челюсть",
name: "tooth_number",
},
],
columns: [
{
tooth_number: "18",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "17",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "16",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "15",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "14",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "13",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "12",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "11",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "21",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "22",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "23",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "24",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "25",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "26",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "27",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "28",
dental_condition: "",
tooth_mobility: "",
},
],
},
{
name: "lowerJaw",
rowMap: [
{
label: "Нижняя челюсть",
name: "tooth_number",
},
{
label: "Cостояние зубов",
name: "dental_condition",
},
{
label: "Подвижность",
name: "tooth_mobility",
},
],
columns: [
{
tooth_number: "48",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "47",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "46",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "45",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "44",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "43",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "42",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "41",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "31",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "32",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "33",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "34",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "35",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "36",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "37",
dental_condition: "",
tooth_mobility: "",
},
{
tooth_number: "38",
dental_condition: "",
tooth_mobility: "",
},
],
},
];