[WIP] Добавил формы на модальном окне создания записи
This commit is contained in:
@@ -136,3 +136,65 @@ export const patientList = [
|
||||
choice: false,
|
||||
},
|
||||
];
|
||||
export const patientData = {
|
||||
basic: {
|
||||
full_name: "",
|
||||
birth_date: null,
|
||||
priority: {
|
||||
id: null,
|
||||
label: "",
|
||||
},
|
||||
contacts: [
|
||||
{
|
||||
kind: {
|
||||
id: "TELEGRAM",
|
||||
icon: "app:icon-tg",
|
||||
},
|
||||
username: "",
|
||||
},
|
||||
],
|
||||
},
|
||||
identity_document: {
|
||||
pass: {
|
||||
series_number: "",
|
||||
issued_by_org: "",
|
||||
issued_by_date: null,
|
||||
issued_by_org_code: "",
|
||||
},
|
||||
snils: {
|
||||
kind: "СНИЛС",
|
||||
number: "",
|
||||
},
|
||||
inn: {
|
||||
kind: "ИНН",
|
||||
number: "",
|
||||
},
|
||||
},
|
||||
phone: { username: "" },
|
||||
email: { username: "" },
|
||||
addresses: {},
|
||||
priorityList: [
|
||||
{
|
||||
id: 1,
|
||||
label: "Высокий",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
label: "Средний",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
label: "Низкий",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
label: "-",
|
||||
},
|
||||
],
|
||||
statuses: [
|
||||
{ name: "Отказ", icon: rejected, check: false },
|
||||
{ name: "Не принят", icon: not_accepted, check: true },
|
||||
{ name: "На приеме", icon: reception, check: false },
|
||||
{ name: "Принят", icon: accepted, check: false },
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user