[WIP] Добавил форму страховки

This commit is contained in:
megavrilinvv
2023-04-13 13:22:59 +03:00
parent f7ece9c512
commit a99cf55200
3 changed files with 163 additions and 0 deletions

View File

@@ -180,6 +180,66 @@ export const baseInfoMenu = [
},
];
export const baseInsuranceForm = [
{
insuranceLabel: "ОМС",
insuranceKey: "insuranceOMS",
fields: [
{
key: "series",
label: "Серия",
type: "number",
},
{
key: "number",
label: "Номер",
type: "number",
},
{
key: "photo",
label: "Фото ОМС",
type: "photo",
},
],
},
{
insuranceLabel: "ДМС",
insuranceKey: "insuranceDMS",
fields: [
{
key: "series",
label: "Серия",
type: "number",
},
{
key: "number",
label: "Номер",
type: "number",
},
{
key: "photo",
label: "Фото ДМС",
type: "photo",
},
],
},
// {
// insuranceLabel: "Категория льготы",
// insuranceKey: "benefit",
// fields: [
// {
// key: "benefit",
// label: "Категория",
// type: "text",
// },
// {
// key: "photo",
// label: "Документы",
// type: "photo",
// },
// ],
// },
];
export const routesDictionary = {
"/clients": "Клиенты",
"/calendar": "Календарь",