Files
astra-frontend/src/pages/medicalCard/utils/medicalConfig.js
2023-01-10 17:31:23 +03:00

177 lines
4.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const medicalDetailConfig = {
gendersList: [
{
id: "1",
label: "Мужской",
value: "MALE",
},
{
id: "2",
label: "Женский",
value: "WOMEN",
},
],
policiesList: [
{
id: "1",
label: "Полис ОМС",
value: "OMS",
},
{
id: "2",
label: "Полис ДМС",
value: "DMS",
},
],
identity_document: {
height: 366,
title: "Паспортные данные",
fields: [
{
label: "number_series",
title: "Серия и номер",
type: "text",
copy: true,
},
{
label: "issued_by_org",
title: "Выдан",
type: "textarea",
},
{
label: "issued_by_org_code",
title: "Код подразделения",
type: "text",
},
{
label: "issued_by_date",
title: "Дата выдачи",
type: "date",
},
],
},
registration_address: {
height: 135,
title: "Адрес регистрации",
fields: [
{
label: "registration_address",
title: "Полный адрес",
type: "textarea",
},
],
},
temporary_address: {
height: 135,
title: "Адрес проживания",
fields: [
{
label: "temporary_address",
title: "Полный адрес",
type: "textarea",
},
],
},
snils: {
height: 135,
title: "СНИЛС",
fields: [
{
label: "insurance_number",
title: "Номер",
type: "text",
copy: true,
},
],
},
policy: {
height: 210,
title: "ПОЛИС",
fields: [
{
label: "series",
title: "Серия",
type: "text",
},
{
label: "number",
title: "Номер",
type: "text",
},
],
},
policy_organization: {
height: 135,
title: "Страховая организация",
fields: [
{
label: "organization",
title: "Название",
type: "text",
},
],
},
additional: {
height: 275,
title: "Дополнительная информация",
fields: [
{
icon: "icon-person",
label: "name_confidant",
title: "Доверенное лицо",
type: "text",
},
{
icon: "icon-phone",
label: "phone_confidant",
title: "",
type: "text",
},
{
label: "benefit_code",
title: "Код категории льготы",
type: "text",
},
],
},
agreement_form: {
height: 163,
title:
"Информированное добровольное согласие на виды медицинских вмешательств, включенные в Перечень определенных видов медицинских вмешательств:",
fields: [
{
label: "agreement",
title: "Получено",
type: "check_box",
},
{
label: "agreement_date",
title: "Дата",
type: "date",
},
],
},
dental_indications: {
complaints: "Жалобы",
allergic_history: "Аллергологический анамнез",
past_diseases: "Перенесённые и сопутствующие заболевания",
medications_taken: "Принимаемые лекарственные препараты",
thermometry: "Термометрия (по показаниям)",
tonometry: "Тонометрия, ЧСС (по показаниям)",
disease_progress: "Развитие настоящего заболевания",
visual_examination: "Внешний осмотр",
oral_examination: "Осмотр преддверия и полости рта",
dental_formula: "Зубная формула",
dental_bite: "Прикус",
hygiene_index: "Индекс гигиены",
dmf_index: "Индекс КПУ",
diagnostic_findings: "Предварительный диагноз",
icd_code: "Код МКБ-10",
survey_plan: "План обследования",
survey_data: "Данные обследования",
clinical_diagnosis: "Клинический диагноз",
treatment_plan: "План лечения",
treatment_protocol: "Протокол лечения",
},
};