35 lines
663 B
Vue
35 lines
663 B
Vue
<script setup lang="ts">
|
|
import { cols, header, keys, funcParsed, funcComponent, funcHtml } from './list-cfg'
|
|
|
|
interface SepData {
|
|
tgl_sep: string
|
|
no_sep: string
|
|
pelayanan: string
|
|
jalur: string
|
|
no_rm: string
|
|
nama_pasien: string
|
|
no_kartu_bpjs: string
|
|
no_surat_kontrol: string
|
|
tgl_surat_kontrol: string
|
|
klinik_tujuan: string
|
|
dpjp: string
|
|
diagnosis_awal: string
|
|
}
|
|
|
|
const props = defineProps<{
|
|
data: SepData[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable
|
|
:cols="cols"
|
|
:header="header"
|
|
:keys="keys"
|
|
:rows="props.data"
|
|
:funcParsed="funcParsed"
|
|
:funcComponent="funcComponent"
|
|
:funcHtml="funcHtml"
|
|
/>
|
|
</template>
|