first commit

This commit is contained in:
brusnitsyn
2025-11-30 23:04:45 +09:00
commit c9a392f84f
76 changed files with 15085 additions and 0 deletions

View File

@@ -0,0 +1,78 @@
<script setup>
import {NDataTable, NEllipsis} from "naive-ui"
import {h, ref} from "vue"
const props = defineProps({
data: {
type: Array,
default: []
},
maxHeight: {
type: String,
default: null
},
minHeight: {
type: String,
default: null
}
})
const columns = ref([
{
title: '№ карты',
key: 'nkarta',
width: 100,
render: (row) => h(NEllipsis, null, { default: () => row.nkarta })
},
{
title: 'ФИО',
key: 'fullname',
width: 250,
render: (row) => h(NEllipsis, null, { default: () => row.fullname })
},
{
title: 'Дата рождения',
key: 'dr',
width: 130,
render: (row) => h(NEllipsis, null, { default: () => row.dr })
},
{
title: 'Дата поступления',
key: 'mpostdate',
width: 150,
render: (row) => h(NEllipsis, null, { default: () => row.mpostdate })
},
{
title: 'Дата выписки',
key: 'menddate',
width: 130,
render: (row) => h(NEllipsis, null, { default: () => row.menddate })
},
{
title: '№ архива',
key: 'narhiv',
width: 120,
render: (row) => h(NEllipsis, null, { default: () => row.narhiv })
},
{
title: 'Дата архива',
key: 'datearhiv',
width: 130,
render: (row) => h(NEllipsis, null, { default: () => row.datearhiv })
},
{
title: 'Статус',
key: 'status',
width: 100,
render: (row) => h(NEllipsis, null, { default: () => row.status || '-' })
}
])
</script>
<template>
<NDataTable remote striped :columns="columns" :max-height="maxHeight" size="small" :min-height="minHeight" :data="data" />
</template>
<style scoped>
</style>