39 lines
931 B
Vue
39 lines
931 B
Vue
<script setup lang="ts">
|
|
import type { PagePermission } from '~/models/role'
|
|
import Error from '~/components/pub/base/error/error.vue'
|
|
import { PAGE_PERMISSIONS } from '~/lib/page-permission'
|
|
|
|
definePageMeta({
|
|
middleware: ['rbac'],
|
|
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
|
|
title: 'Daftar Dokter',
|
|
contentFrame: 'cf-container-lg',
|
|
})
|
|
|
|
const route = useRoute()
|
|
|
|
useHead({
|
|
title: () => route.meta.title as string,
|
|
})
|
|
|
|
const roleAccess: PagePermission = PAGE_PERMISSIONS['/doctor']
|
|
|
|
const { checkRole, hasReadAccess } = useRBAC()
|
|
|
|
// Check if user has access to this page
|
|
const hasAccess = checkRole(roleAccess)
|
|
if (!hasAccess) {
|
|
navigateTo('/403')
|
|
}
|
|
|
|
// Define permission-based computed properties
|
|
const canRead = hasReadAccess(roleAccess)
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="canRead">
|
|
<ContentMedicineMethodList />
|
|
</template>
|
|
<Error v-else :status-code="403" />
|
|
</template>
|