Работа над журналом для ст. мед сестер

This commit is contained in:
brusnitsyn
2026-05-04 17:11:16 +09:00
parent f107ebd167
commit 7a58812072
61 changed files with 3532 additions and 1163 deletions

View File

@@ -0,0 +1,24 @@
<script setup>
import {computed} from "vue";
import {NTag} from 'naive-ui'
const props = defineProps({
urgencyId: {
type: Number,
default: 0
}
})
const typeForUrgency = computed(() => props.urgencyId === 1 ? 'success' : 'error')
const textForUrgency = computed(() => props.urgencyId === 1 ? 'Планово' : 'Экстренно')
</script>
<template>
<NTag :type="typeForUrgency" round :bordered="false" size="small">
{{ textForUrgency }}
</NTag>
</template>
<style scoped>
</style>