51 lines
785 B
JavaScript
51 lines
785 B
JavaScript
export const searchListConfig = [
|
|
{
|
|
title: "ФИО",
|
|
width: "100%",
|
|
minWidth: "350px",
|
|
},
|
|
{
|
|
title: "Дата рождения",
|
|
minWidth: "220px",
|
|
},
|
|
{
|
|
title: "№ медкарты",
|
|
minWidth: "280px",
|
|
},
|
|
{
|
|
title: "Дата создания",
|
|
minWidth: "215px",
|
|
},
|
|
{
|
|
title: "Do",
|
|
minWidth: "60px",
|
|
},
|
|
];
|
|
|
|
export const priorityList = [
|
|
{
|
|
priority: 1,
|
|
id: 1,
|
|
text: "Высокий",
|
|
color: "var(--system-color-red)",
|
|
},
|
|
{
|
|
priority: 2,
|
|
id: 2,
|
|
text: "Средний",
|
|
color: "var(--bg-yellow-warning)",
|
|
},
|
|
{
|
|
priority: 3,
|
|
id: 3,
|
|
text: "Низкий",
|
|
color: "var(--btn-blue-color)",
|
|
},
|
|
{
|
|
priority: null,
|
|
id: 4,
|
|
text: "-",
|
|
color: "#9294A7",
|
|
},
|
|
];
|