Добавил реанимацию

Правки окна операций
This commit is contained in:
brusnitsyn
2026-05-07 22:37:07 +09:00
parent bb9e67ab3d
commit 6cf1ffbb2b
11 changed files with 137 additions and 45 deletions

View File

@@ -39,7 +39,7 @@ const tableColumns = computed(() => {
const searchArg = ref(null)
const findPatient = (arg) => {
patients.value = patients.value.find(itm => itm.full_name === arg)
// TODO: сделать поиск пациента через БДц
}
const rowProps = (row) => {
@@ -69,8 +69,8 @@ const rowProps = (row) => {
<NDataTable :columns="tableColumns"
:data="patients"
table-layout="fixed"
max-height="280"
min-height="280"
max-height="234"
min-height="234"
:loading="loading"
size="small"
:row-props="rowProps"