Обновлен стартовый экран
Переписаны запросы для статистики, отчетов Добавлена интеграция отчета сестры
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
import { NTooltip } from 'naive-ui'
|
||||
import {computed} from "vue";
|
||||
const props = defineProps({
|
||||
operations: Array
|
||||
operations: Array,
|
||||
patient: Object
|
||||
})
|
||||
|
||||
const emits = defineEmits(['click'])
|
||||
@@ -13,7 +14,7 @@ const firstOperation = computed(() => props.operations[0])
|
||||
<template>
|
||||
<NTooltip v-if="operations.length" :arrow="false">
|
||||
<template #trigger>
|
||||
<div class="absolute inset-0 p-2 pt-2.5 cursor-pointer" @click="emits('click', operations)">
|
||||
<div class="absolute inset-0 p-2 pt-2.5 cursor-pointer" @click="emits('click', {patient, operations})">
|
||||
{{ firstOperation?.code_service }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user