feat(sep): add service vclaim dpjp

This commit is contained in:
riefive
2025-10-20 10:25:34 +07:00
parent 65b6de2e6f
commit a95bdfcdb4
6 changed files with 75 additions and 6 deletions
+1
View File
@@ -141,6 +141,7 @@ const onSubmit = handleSubmit((values) => {
</div>
<Block
v-if="!isLoading"
labelSize="thin"
class="!pt-0"
:colCount="3"
@@ -0,0 +1,35 @@
import type { Config } from '~/components/pub/my-ui/data-table'
import { defineAsyncComponent } from 'vue'
// const RadioGroup = defineAsyncComponent(() => import('~/components/pub/ui/radio-group/RadioGroup.vue'))
// const RadioGroupItem = defineAsyncComponent(() => import('~/components/pub/ui/radio-group/RadioGroupItem.vue'))
const action = defineAsyncComponent(() => import('~/components/pub/my-ui/data/dropdown-action-dud.vue'))
export const config: Config = {
cols: [{ width: 50 }, { width: 100 }, { width: 100 }, { width: 100 }, { width: 100 }],
headers: [
[{ label: '' }, { label: 'NO. KTP' }, { label: 'NO. RM' }, { label: 'NO. KARTU BPJS' }, { label: 'NAMA PASIEN' }],
],
keys: ['check', 'identity', 'number', 'bpjs', 'name'],
delKeyNames: [
{ key: 'code', label: 'Kode' },
{ key: 'name', label: 'Nama' },
],
parses: {},
components: {
action(rec, idx) {
return {
idx,
rec: rec as object,
component: action,
}
},
},
htmls: {},
}
+5
View File
@@ -0,0 +1,5 @@
<script lang="ts"></script>
<template>
<div></div>
</template>
@@ -22,6 +22,20 @@ const props = defineProps<{
}>
}>()
// {
// "diagnosa": "string",
// "jnsPelayanan": "string",
// "kelasRawat": "string",
// "namaPeserta": "string",
// "noKartu": "string",
// "noSep": "string",
// "noRujukan": "string",
// "poli": "string",
// "ppkPelayanan": "string",
// "tglPlgSep": "2025-10-20",
// "tglSep": "2025-10-20"
// }
const emit = defineEmits<{
(e: 'update:open', value: boolean): void
}>()