WIP Сделала шаблон документов
This commit is contained in:
@@ -246,3 +246,74 @@ export const routesDictionary = {
|
||||
"/calendar": "Календарь",
|
||||
"/medical-card": "Медкарта",
|
||||
};
|
||||
|
||||
export const documentForm = [
|
||||
{
|
||||
dataLabel: "Паспорт",
|
||||
dataKey: "passport",
|
||||
fields: [
|
||||
{
|
||||
key: "series",
|
||||
label: "Серия",
|
||||
type: "text",
|
||||
},
|
||||
{
|
||||
key: "number",
|
||||
label: "Номер",
|
||||
type: "text",
|
||||
},
|
||||
{
|
||||
key: "issued_by_org",
|
||||
label: "Кем выдан",
|
||||
type: "text",
|
||||
},
|
||||
{
|
||||
key: "issued_by_org_code",
|
||||
label: "Код подраздел.",
|
||||
type: "text",
|
||||
},
|
||||
{
|
||||
key: "issued_by_date",
|
||||
label: "Дата выдачи",
|
||||
type: "date",
|
||||
},
|
||||
{
|
||||
key: "photo",
|
||||
label: "Фото паспорта",
|
||||
type: "photo",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
dataLabel: "СНИЛС",
|
||||
dataKey: "insuranceNumber",
|
||||
fields: [
|
||||
{
|
||||
key: "insurance_number",
|
||||
label: "Номер СНИЛС",
|
||||
type: "text",
|
||||
},
|
||||
{
|
||||
key: "photo_insurance_number",
|
||||
label: "Фото СНИЛС",
|
||||
type: "photo",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
dataLabel: "ИНН",
|
||||
dataKey: "taxIdentificationNumber",
|
||||
fields: [
|
||||
{
|
||||
key: "tax_identification_number",
|
||||
label: "Номер ИНН",
|
||||
type: "text",
|
||||
},
|
||||
{
|
||||
key: "photo_tax_identification_number",
|
||||
label: "Фото ИНН",
|
||||
type: "photo",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user